1 | <?php declare(strict_types = 1); |
||
20 | class LiipImagineSerializableFieldTest extends TestCase |
||
21 | { |
||
22 | /** |
||
23 | * Test annotation with `value` option |
||
24 | */ |
||
25 | public function testValueOption(): void |
||
33 | |||
34 | /** |
||
35 | * Test annotation with all options |
||
36 | */ |
||
37 | public function testAllOptions(): void |
||
49 | |||
50 | /** |
||
51 | * Test annotation without any option |
||
52 | * |
||
53 | * @expectedException \LogicException |
||
54 | */ |
||
55 | public function testAnnotationWithoutOptions(): void |
||
59 | |||
60 | /** |
||
61 | * Test annotation with wrong type for `filter` option |
||
62 | * |
||
63 | * @expectedException \InvalidArgumentException |
||
64 | */ |
||
65 | public function testWrongTypeForFilterOption(): void |
||
69 | |||
70 | /** |
||
71 | * Test annotation with wrong type for `value` option |
||
72 | * |
||
73 | * @expectedException \InvalidArgumentException |
||
74 | */ |
||
75 | public function testWrongTypeForValueOption(): void |
||
79 | |||
80 | /** |
||
81 | * Test annotation with wrong type for `vichUploaderField` option |
||
82 | * |
||
83 | * @expectedException \InvalidArgumentException |
||
84 | */ |
||
85 | public function testWrongTypeForVichUploaderFieldOption(): void |
||
89 | |||
90 | /** |
||
91 | * Test annotation with wrong type for `virtualField` option |
||
92 | * |
||
93 | * @expectedException \InvalidArgumentException |
||
94 | */ |
||
95 | public function testWrongTypeForVirtualFieldOption(): void |
||
99 | } |
||
100 |