From c1374ce8b33e504c0fa412726a5291d81ddcdfe5 Mon Sep 17 00:00:00 2001 From: LinaKind Date: Wed, 11 Dec 2024 11:31:11 +0000 Subject: [PATCH] Write a characterisation test list for teaser terms builder https://github.com/elifesciences/issues/issues/9034 --- .../Converter/TeaserTermsBuilderTest.php | 51 +++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 test/ViewModel/Converter/TeaserTermsBuilderTest.php diff --git a/test/ViewModel/Converter/TeaserTermsBuilderTest.php b/test/ViewModel/Converter/TeaserTermsBuilderTest.php new file mode 100644 index 00000000..d501b2db --- /dev/null +++ b/test/ViewModel/Converter/TeaserTermsBuilderTest.php @@ -0,0 +1,51 @@ +markTestIncomplete('incomplete'); + } + + /** + * @test + */ + final public function it_does_not_build_significance_terms_when_none_are_available() + { + $this->markTestIncomplete('incomplete'); + } + + /** + * @test + */ + final public function it_builds_strength_terms_when_there_are_strength_terms() + { + $this->markTestIncomplete('incomplete'); + } + + /** + * @test + */ + final public function it_does_not_build_strength_terms_when_none_are_available() + { + $this->markTestIncomplete('incomplete'); + } + + /** + * @test + */ + final public function it_capitalises_the_first_letter_of_the_term() + { + $this->markTestIncomplete('incomplete'); + } +}