1 | <?php |
||
12 | class AbstractAdaptorTest extends \PHPUnit_Framework_TestCase |
||
13 | { |
||
14 | /** |
||
15 | * @var AdaptorInterface |
||
16 | */ |
||
17 | public $adaptor; |
||
18 | |||
19 | /** |
||
20 | * @var \PHPUnit_Framework_MockObject_MockObject|SerializerInterface |
||
21 | */ |
||
22 | public $serializer; |
||
23 | |||
24 | /** |
||
25 | * |
||
26 | */ |
||
27 | public function setUp() |
||
32 | |||
33 | /** |
||
34 | * |
||
35 | */ |
||
36 | public function testGetOptions() |
||
42 | |||
43 | /** |
||
44 | * |
||
45 | */ |
||
46 | public function testGetOption() |
||
52 | |||
53 | /** |
||
54 | * |
||
55 | */ |
||
56 | public function testWithOptions() |
||
63 | } |
||
64 |