Code Duplication    Length = 7-7 lines in 2 locations

exercises/dependency-heaven/solution/vendor/danielstjules/stringy/tests/StringyTest.php 2 locations

@@ 233-239 (lines=7) @@
230
        $this->assertEquals($expected, $result);
231
    }
232
233
    public function appendProvider()
234
    {
235
        return array(
236
            array('foobar', 'foo', 'bar'),
237
            array('fòôbàř', 'fòô', 'bàř', 'UTF-8')
238
        );
239
    }
240
241
    /**
242
     * @dataProvider prependProvider()
@@ 251-257 (lines=7) @@
248
        $this->assertEquals($expected, $result);
249
    }
250
251
    public function prependProvider()
252
    {
253
        return array(
254
            array('foobar', 'bar', 'foo'),
255
            array('fòôbàř', 'bàř', 'fòô', 'UTF-8')
256
        );
257
    }
258
259
    /**
260
     * @dataProvider charsProvider()