1 | <?php |
||
21 | class ValidateTest4IsHalfWidth extends \PHPUnit_Framework_TestCase |
||
22 | { |
||
23 | //------------------------------------------------------// |
||
24 | // テストメソッド定義 |
||
25 | //------------------------------------------------------// |
||
26 | /** |
||
27 | * setUp() |
||
28 | * |
||
29 | * テストに必要な準備を実施 |
||
30 | */ |
||
31 | protected function setUp() |
||
34 | |||
35 | /** |
||
36 | * test_IsHalfWidth_HalfNumeric() |
||
37 | * |
||
38 | * isHalfWidth()の挙動をテストする(半角数字) |
||
39 | */ |
||
40 | public function test_IsHalfWidth_HalfNumeric() |
||
46 | |||
47 | /** |
||
48 | * test_IsHalfWidth_HalfAlphabet() |
||
49 | * |
||
50 | * isHalfWidth()の挙動をテストする(半角英字) |
||
51 | */ |
||
52 | public function test_IsHalfWidth_HalfAlphabet() |
||
58 | |||
59 | /** |
||
60 | * test_IsHalfWidth_HalfSymbol() |
||
61 | * |
||
62 | * isHalfWidth()の挙動をテストする(半角記号) |
||
63 | */ |
||
64 | public function test_IsHalfWidth_HalfSymbol() |
||
70 | |||
71 | /** |
||
72 | * test_IsHalfWidth_FullNumeric() |
||
73 | * |
||
74 | * isHalfWidth()の挙動をテストする(全角数字) |
||
75 | */ |
||
76 | public function test_IsHalfWidth_FullNumeric() |
||
82 | |||
83 | /** |
||
84 | * test_IsHalfWidth_FullAlphabet() |
||
85 | * |
||
86 | * isHalfWidth()の挙動をテストする(全角英字) |
||
87 | */ |
||
88 | public function test_IsHalfWidth_FullAlphabet() |
||
94 | |||
95 | /** |
||
96 | * test_IsHalfWidth_FullSymbol() |
||
97 | * |
||
98 | * isHalfWidth()の挙動をテストする(全角記号) |
||
99 | */ |
||
100 | public function test_IsHalfWidth_FullSymbol() |
||
106 | } |