Merge pull request #179 from brettsantore/adapter

Add assertions to AdapterTest
This commit is contained in:
Dominik Liebler
2015-09-15 07:47:02 +02:00

View File

@@ -35,7 +35,7 @@ class AdapterTest extends \PHPUnit_Framework_TestCase
*/ */
public function testIAmAnOldClient(PaperBookInterface $book) public function testIAmAnOldClient(PaperBookInterface $book)
{ {
$book->open(); $this->assertTrue(method_exists($book, 'open'));
$book->turnPage(); $this->assertTrue(method_exists($book, 'turnPage'));
} }
} }