Skip to content

Commit d703a87

Browse files
committed
Add assertions to AdapterTest
1 parent 58f0fc6 commit d703a87

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Structural/Adapter/Tests/AdapterTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ public function getBook()
3535
*/
3636
public function testIAmAnOldClient(PaperBookInterface $book)
3737
{
38-
$book->open();
39-
$book->turnPage();
38+
$this->assertTrue(method_exists($book, 'open'));
39+
$this->assertTrue(method_exists($book, 'turnPage'));
4040
}
4141
}

0 commit comments

Comments
 (0)