mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-08-06 23:16:33 +02:00
removed Interface-suffix
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
|
||||
namespace DesignPatterns\Structural\Adapter\Tests;
|
||||
|
||||
use DesignPatterns\Structural\Adapter\Book;
|
||||
use DesignPatterns\Structural\Adapter\PaperBook;
|
||||
use DesignPatterns\Structural\Adapter\EBookAdapter;
|
||||
use DesignPatterns\Structural\Adapter\Kindle;
|
||||
use PHPUnit\Framework\TestCase;
|
||||
@@ -11,7 +11,7 @@ class AdapterTest extends TestCase
|
||||
{
|
||||
public function testCanTurnPageOnBook()
|
||||
{
|
||||
$book = new Book();
|
||||
$book = new PaperBook();
|
||||
$book->open();
|
||||
$book->turnPage();
|
||||
|
||||
|
Reference in New Issue
Block a user