Code Duplication    Length = 9-9 lines in 3 locations

Tests/ValueResolver/ListValueResolverTest.php 1 location

@@ 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

Tests/ValueResolver/NullableValueResolverTest.php 1 location

@@ 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

Tests/ValueResolver/NullValueResolverTest.php 1 location

@@ 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