@@ -17,7 +17,7 @@ class DomesticCardCodeTest extends TestCase
1717 * @throws InvalidInputTargetCodeException
1818 * @throws \ReflectionException
1919 */
20- public function testConvertKrToCode (): void
20+ public function test_convert_kr_to_code (): void
2121 {
2222 $ code = DomesticCardCode::toCode ('토스뱅크 ' );
2323 $ this ->assertSame (self ::TEST_TOSSBANK_CODE , $ code );
@@ -30,7 +30,7 @@ public function testConvertKrToCode(): void
3030 * @throws InvalidInputTargetCodeException
3131 * @throws \ReflectionException
3232 */
33- public function testConvertEnToCode (): void
33+ public function test_convert_en_to_code (): void
3434 {
3535 $ code = DomesticCardCode::toCode ('TOSSBANK ' );
3636 $ this ->assertSame (self ::TEST_TOSSBANK_CODE , $ code );
@@ -43,7 +43,7 @@ public function testConvertEnToCode(): void
4343 * @throws InvalidInputTargetCodeException
4444 * @throws \ReflectionException
4545 */
46- public function testAlwaysCode (): void
46+ public function test_always_code (): void
4747 {
4848 $ code = DomesticCardCode::toCode (self ::TEST_TOSSBANK_CODE );
4949 $ this ->assertSame (self ::TEST_TOSSBANK_CODE , $ code );
@@ -56,7 +56,7 @@ public function testAlwaysCode(): void
5656 * @throws InvalidInputTargetCodeException
5757 * @throws \ReflectionException
5858 */
59- public function testInvalidInputTargetCodeException (): void
59+ public function test_invalid_input_target_code_exception (): void
6060 {
6161 $ this ->expectException (InvalidInputTargetCodeException::class);
6262 DomesticCardCode::toCode ('invalid ' );
0 commit comments