Code Duplication    Length = 8-8 lines in 2 locations

risoluto/lib/vendor_test/Risoluto/ValidateTest/ValidateTest4IsBetween.php 2 locations

@@ 166-173 (lines=8) @@
163
     *
164
     * IsLeapYear()の挙動をテストする(範囲外:下限値より下)
165
     */
166
    public function test_IsBetween_OutRangePart1()
167
    {
168
        $test = '0';
169
        $low = '1';
170
        $high = '9';
171
172
        $this->assertFalse( Validate::isBetween( $test, $low, $high ) );
173
    }
174
175
    /**
176
     * test_IsBetween_OutRangePart2()
@@ 180-187 (lines=8) @@
177
     *
178
     * IsLeapYear()の挙動をテストする(範囲外:上限値より上)
179
     */
180
    public function test_IsBetween_OutRangePart2()
181
    {
182
        $test = '10';
183
        $low = '1';
184
        $high = '9';
185
186
        $this->assertFalse( Validate::isBetween( $test, $low, $high ) );
187
    }
188
189
    /**
190
     * test_IsBetween_OutRangePart3()