Add assertions to AdapterTest

This commit is contained in:
Brett Santore 2015-09-14 11:00:03 -04:00
parent 58f0fc6d5f
commit d703a87fe8

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'));
} }
} }