Skip to content

Commit

Permalink
#769 Mark getSets tests as incomplete.
Browse files Browse the repository at this point in the history
  • Loading branch information
haogatyp committed Nov 9, 2023
1 parent 5b44a67 commit 081529e
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 0 deletions.
5 changes: 5 additions & 0 deletions tests/modules/oai/models/Set/BibliographySetsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,11 @@ public function testDoesNotSupport()

public function testGetSets()
{
$this->markTestIncomplete(
'The number of sets depends on the filling of the DB, which results from the existing '
. 'tests and may also depend on the test sequence.'
);

$bibliographySets = new Oai_Model_Set_BibliographySets();

$sets = $bibliographySets->getSets();
Expand Down
5 changes: 5 additions & 0 deletions tests/modules/oai/models/Set/CollectionSetsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,11 @@ public function testDoesNotSupport()

public function testGetSets()
{
$this->markTestIncomplete(
'The number of sets depends on the filling of the DB, which results from the existing '
. 'tests and may also depend on the test sequence.'
);

$collectionSets = new Oai_Model_Set_CollectionSets();

$sets = $collectionSets->getSets();
Expand Down
5 changes: 5 additions & 0 deletions tests/modules/oai/models/Set/DocumentTypeSetsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,11 @@ public function testDoesNotSupport()

public function testGetSets()
{
$this->markTestIncomplete(
'The number of sets depends on the filling of the DB, which results from the existing '
. 'tests and may also depend on the test sequence.'
);

$documentTypeSets = new Oai_Model_Set_DocumentTypeSets();

$sets = $documentTypeSets->getSets();
Expand Down
5 changes: 5 additions & 0 deletions tests/modules/oai/models/Set/SetsManagerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,11 @@ class Oai_Model_Set_SetsManagerTest extends ControllerTestCase

public function testGetSets()
{
$this->markTestIncomplete(
'The number of sets depends on the filling of the DB, which results from the existing '
. 'tests and may also depend on the test sequence.'
);

$setsManager = new Oai_Model_Set_SetsManager();

$sets = $setsManager->getSets();
Expand Down

0 comments on commit 081529e

Please sign in to comment.