Skip to content

Commit

Permalink
#769 Added dummy tests for configureFinder() method marked as incompl…
Browse files Browse the repository at this point in the history
…ete.
  • Loading branch information
haogatyp committed Nov 9, 2023
1 parent 081529e commit 858d4dd
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 @@ -80,4 +80,9 @@ public function testGetSetsWithDocument()
$sets = $bibliographySets->getSets($document);
$this->assertEquals(['bibliography:true'], array_keys($sets));
}

public function testConfigureFinder()
{
$this->markTestIncomplete('Actual search results should be checked.');
}
}
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 @@ -72,4 +72,9 @@ public function testGetSetsWithDocument()
{
$this->markTestIncomplete('do more testing');
}

public function testConfigureFinder()
{
$this->markTestIncomplete('Actual search results should be checked.');
}
}
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 @@ -75,4 +75,9 @@ public function testGetSetsWithDocument()
$sets = $documentTypeSets->getSets($document);
$this->assertEquals(['doc-type:Other'], array_keys($sets));
}

public function testConfigureFinder()
{
$this->markTestIncomplete('Actual search results should be checked.');
}
}
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 @@ -83,4 +83,9 @@ public function testGetSetTypeUnkownSet()

$this->assertNull($setType);
}

public function testConfigureFinder()
{
$this->markTestIncomplete('Actual search results should be checked.');
}
}

0 comments on commit 858d4dd

Please sign in to comment.