| @@ 160-168 (lines=9) @@ | ||
| 157 | /** |
|
| 158 | * @test |
|
| 159 | */ |
|
| 160 | public function shouldAssertValue() |
|
| 161 | { |
|
| 162 | $this->assertNull($this->valueResolver->assertValue( |
|
| 163 | $this->createMock(ListMappingInterface::class), |
|
| 164 | $this->createMock(HydrationContextInterface::class), |
|
| 165 | [], |
|
| 166 | null |
|
| 167 | )); |
|
| 168 | } |
|
| 169 | ||
| 170 | /** |
|
| 171 | * @test |
|
| @@ 243-251 (lines=9) @@ | ||
| 240 | /** |
|
| 241 | * @test |
|
| 242 | */ |
|
| 243 | public function shouldAssertValue() |
|
| 244 | { |
|
| 245 | $this->assertNull($this->valueResolver->assertValue( |
|
| 246 | $this->createMock(MappingInterface::class), |
|
| 247 | $this->createMock(HydrationContextInterface::class), |
|
| 248 | [], |
|
| 249 | null |
|
| 250 | )); |
|
| 251 | } |
|
| 252 | ||
| 253 | } |
|
| 254 | ||
| @@ 58-66 (lines=9) @@ | ||
| 55 | /** |
|
| 56 | * @test |
|
| 57 | */ |
|
| 58 | public function shouldNotAssertValue() |
|
| 59 | { |
|
| 60 | $this->assertNull($this->valueResolver->assertValue( |
|
| 61 | $this->createMock(MappingInterface::class), |
|
| 62 | $this->createMock(HydrationContextInterface::class), |
|
| 63 | [], |
|
| 64 | null |
|
| 65 | )); |
|
| 66 | } |
|
| 67 | ||
| 68 | } |
|
| 69 | ||