From d703a87fe8f864b8fdb4967161572ed965ddc95a Mon Sep 17 00:00:00 2001 From: Brett Santore Date: Mon, 14 Sep 2015 11:00:03 -0400 Subject: [PATCH] Add assertions to AdapterTest --- Structural/Adapter/Tests/AdapterTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Structural/Adapter/Tests/AdapterTest.php b/Structural/Adapter/Tests/AdapterTest.php index 258e755..ecbc9e2 100644 --- a/Structural/Adapter/Tests/AdapterTest.php +++ b/Structural/Adapter/Tests/AdapterTest.php @@ -35,7 +35,7 @@ class AdapterTest extends \PHPUnit_Framework_TestCase */ public function testIAmAnOldClient(PaperBookInterface $book) { - $book->open(); - $book->turnPage(); + $this->assertTrue(method_exists($book, 'open')); + $this->assertTrue(method_exists($book, 'turnPage')); } }