Skip to content

Commit

Permalink
Write a characterisation test list for teaser terms builder
Browse files Browse the repository at this point in the history
  • Loading branch information
LinaKind committed Dec 11, 2024
1 parent 8124396 commit c1374ce
Showing 1 changed file with 51 additions and 0 deletions.
51 changes: 51 additions & 0 deletions test/ViewModel/Converter/TeaserTermsBuilderTest.php
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');
}
}

0 comments on commit c1374ce

Please sign in to comment.