-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Write a characterisation test list for teaser terms builder
- Loading branch information
Showing
1 changed file
with
51 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
<?php | ||
|
||
namespace test\eLife\Journal\ViewModel\Converter; | ||
|
||
use eLife\Journal\ViewModel\Converter\ReviewedPreprintTeaserConverter; | ||
use eLife\Journal\ViewModel\Converter\ViewModelConverter; | ||
use eLife\Patterns\ViewModel; | ||
use PHPUnit\Framework\TestCase; | ||
|
||
final class TeaserTermsBuilderTest extends TestCase | ||
{ | ||
/** | ||
* @test | ||
*/ | ||
final public function it_builds_significance_terms_when_there_are_significance_terms() | ||
{ | ||
$this->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'); | ||
} | ||
} |