Code Duplication    Length = 10-10 lines in 2 locations

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

@@ 2362-2371 (lines=10) @@
2359
        $this->assertEquals($str, $stringy);
2360
    }
2361
2362
    public function htmlEncodeProvider()
2363
    {
2364
        return array(
2365
            array('&', '&'),
2366
            array('"', '"'),
2367
            array(''', "'", ENT_QUOTES),
2368
            array('&lt;', '<'),
2369
            array('&gt;', '>'),
2370
        );
2371
    }
2372
2373
    /**
2374
     * @dataProvider htmlDecodeProvider()
@@ 2385-2394 (lines=10) @@
2382
        $this->assertEquals($str, $stringy);
2383
    }
2384
2385
    public function htmlDecodeProvider()
2386
    {
2387
        return array(
2388
            array('&', '&amp;'),
2389
            array('"', '&quot;'),
2390
            array("'", '&#039;', ENT_QUOTES),
2391
            array('<', '&lt;'),
2392
            array('>', '&gt;'),
2393
        );
2394
    }
2395
}
2396