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.
2 parents 7715206 + d703a87 commit 6fe8662Copy full SHA for 6fe8662
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