Code Duplication    Length = 13-13 lines in 2 locations

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

@@ 2098-2110 (lines=13) @@
2095
        $this->assertEquals($str, $stringy);
2096
    }
2097
2098
    public function isLowerCaseProvider()
2099
    {
2100
        return array(
2101
            array(true, ''),
2102
            array(true, 'foobar'),
2103
            array(false, 'foo bar'),
2104
            array(false, 'Foobar'),
2105
            array(true, 'fòôbàř', 'UTF-8'),
2106
            array(false, 'fòôbàř2', 'UTF-8'),
2107
            array(false, 'fòô bàř', 'UTF-8'),
2108
            array(false, 'fòôbÀŘ', 'UTF-8'),
2109
        );
2110
    }
2111
2112
    /**
2113
     * @dataProvider hasLowerCaseProvider()
@@ 2179-2191 (lines=13) @@
2176
        $this->assertEquals($str, $stringy);
2177
    }
2178
2179
    public function isUpperCaseProvider()
2180
    {
2181
        return array(
2182
            array(true, ''),
2183
            array(true, 'FOOBAR'),
2184
            array(false, 'FOO BAR'),
2185
            array(false, 'fOOBAR'),
2186
            array(true, 'FÒÔBÀŘ', 'UTF-8'),
2187
            array(false, 'FÒÔBÀŘ2', 'UTF-8'),
2188
            array(false, 'FÒÔ BÀŘ', 'UTF-8'),
2189
            array(false, 'FÒÔBàř', 'UTF-8'),
2190
        );
2191
    }
2192
2193
    /**
2194
     * @dataProvider hasUpperCaseProvider()