@@ -17,7 +17,7 @@ class DomesticCardCodeTest extends TestCase
17
17
* @throws InvalidInputTargetCodeException
18
18
* @throws \ReflectionException
19
19
*/
20
- public function testConvertKrToCode (): void
20
+ public function test_convert_kr_to_code (): void
21
21
{
22
22
$ code = DomesticCardCode::toCode ('토스뱅크 ' );
23
23
$ this ->assertSame (self ::TEST_TOSSBANK_CODE , $ code );
@@ -30,7 +30,7 @@ public function testConvertKrToCode(): void
30
30
* @throws InvalidInputTargetCodeException
31
31
* @throws \ReflectionException
32
32
*/
33
- public function testConvertEnToCode (): void
33
+ public function test_convert_en_to_code (): void
34
34
{
35
35
$ code = DomesticCardCode::toCode ('TOSSBANK ' );
36
36
$ this ->assertSame (self ::TEST_TOSSBANK_CODE , $ code );
@@ -43,7 +43,7 @@ public function testConvertEnToCode(): void
43
43
* @throws InvalidInputTargetCodeException
44
44
* @throws \ReflectionException
45
45
*/
46
- public function testAlwaysCode (): void
46
+ public function test_always_code (): void
47
47
{
48
48
$ code = DomesticCardCode::toCode (self ::TEST_TOSSBANK_CODE );
49
49
$ this ->assertSame (self ::TEST_TOSSBANK_CODE , $ code );
@@ -56,7 +56,7 @@ public function testAlwaysCode(): void
56
56
* @throws InvalidInputTargetCodeException
57
57
* @throws \ReflectionException
58
58
*/
59
- public function testInvalidInputTargetCodeException (): void
59
+ public function test_invalid_input_target_code_exception (): void
60
60
{
61
61
$ this ->expectException (InvalidInputTargetCodeException::class);
62
62
DomesticCardCode::toCode ('invalid ' );
0 commit comments