java
1@RunWith(PowerMockRunner.class) 2public class test1{ 3 4@InjectMocks 5test1 target = new test(); 6 7@Test 8public void testCase01(){ 9assertNull("12345abcde", target.encode(null)); 10} 11 12}
したいこと
ex)1234567890 → 数字のみなのでnullにならない
ex)123abcdefghijklm → 数字以外も含まれているのでnullを返したい。
引数に数字以外の文字が含まれていた場合nullを返したい。
上記実行したらエラー出なかったのですが、これは上記のしたいことを
実行できているのでしょうか?
回答1件
あなたの回答
tips
プレビュー