@@ 54-61 (lines=8) @@ | ||
51 | * |
|
52 | * IsLeapYear()の挙動をテストする(範囲内:下限値と同値) |
|
53 | */ |
|
54 | public function test_IsBetween_InRangePart2() |
|
55 | { |
|
56 | $test = '1'; |
|
57 | $low = '1'; |
|
58 | $high = '9'; |
|
59 | ||
60 | $this->assertTrue( Validate::isBetween( $test, $low, $high ) ); |
|
61 | } |
|
62 | ||
63 | /** |
|
64 | * test_IsBetween_InRangePart3() |
|
@@ 68-75 (lines=8) @@ | ||
65 | * |
|
66 | * IsLeapYear()の挙動をテストする(範囲内:上限値と同値) |
|
67 | */ |
|
68 | public function test_IsBetween_InRangePart3() |
|
69 | { |
|
70 | $test = '9'; |
|
71 | $low = '1'; |
|
72 | $high = '9'; |
|
73 | ||
74 | $this->assertTrue( Validate::isBetween( $test, $low, $high ) ); |
|
75 | } |
|
76 | ||
77 | /** |
|
78 | * test_IsBetween_InRangePart4() |