| @@ 194-201 (lines=8) @@ | ||
| 191 | * |
|
| 192 | * IsLeapYear()の挙動をテストする(範囲外:下限値より下、負数) |
|
| 193 | */ |
|
| 194 | public function test_IsBetween_OutRangePart3() |
|
| 195 | { |
|
| 196 | $test = '-10'; |
|
| 197 | $low = '-9'; |
|
| 198 | $high = '-2'; |
|
| 199 | ||
| 200 | $this->assertFalse( Validate::isBetween( $test, $low, $high ) ); |
|
| 201 | } |
|
| 202 | ||
| 203 | /** |
|
| 204 | * test_IsBetween_OutRangePart4() |
|
| @@ 208-215 (lines=8) @@ | ||
| 205 | * |
|
| 206 | * IsLeapYear()の挙動をテストする(範囲外:上限値より上、負数) |
|
| 207 | */ |
|
| 208 | public function test_IsBetween_OutRangePart4() |
|
| 209 | { |
|
| 210 | $test = '-1'; |
|
| 211 | $low = '-9'; |
|
| 212 | $high = '-2'; |
|
| 213 | ||
| 214 | $this->assertFalse( Validate::isBetween( $test, $low, $high ) ); |
|
| 215 | } |
|
| 216 | ||
| 217 | /** |
|
| 218 | * test_IsBetween_OutRangePart5() |
|