We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 58f0fc6 commit d703a87Copy full SHA for d703a87
Structural/Adapter/Tests/AdapterTest.php
@@ -35,7 +35,7 @@ public function getBook()
35
*/
36
public function testIAmAnOldClient(PaperBookInterface $book)
37
{
38
- $book->open();
39
- $book->turnPage();
+ $this->assertTrue(method_exists($book, 'open'));
+ $this->assertTrue(method_exists($book, 'turnPage'));
40
}
41
0 commit comments