Code Duplication    Length = 7-7 lines in 2 locations

tests/unit/Arguments/ArgumentFactory/ArgumentFactoryLazyLoadProxyTest.php 2 locations

@@ 122-128 (lines=7) @@
119
        $this->assertEquals($expectedResult, $actualResult);
120
    }
121
122
    public function dataProviderShouldCreateArgumentFromStringUsingInnerFactory()
123
    {
124
        return array(
125
            [$this->createMock(Argument::class), 'foo'],
126
            [$this->createMock(Argument::class), 'foo'],
127
        );
128
    }
129
130
    /**
131
     * @test
@@ 150-156 (lines=7) @@
147
        $this->assertEquals($expectedResult, $actualResult);
148
    }
149
150
    public function dataProviderShouldCreateArgumentFromArrayUsingInnerFactory()
151
    {
152
        return array(
153
            [$this->createMock(Argument::class), ['foo']],
154
            [$this->createMock(Argument::class), ['foo']],
155
        );
156
    }
157
158
    /**
159
     * @test