Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Java テストがコンパイルされません。実行すると、次のようになります。
junit テストでメイン クラスが見つかりませんでした (実行構成で指定)
ピーターに同意します
@テスト public void testSomeBehavior(){ assertEquals( "空のリストには0個の要素が必要です"、0、emptyList.size()); }
@Testクラスにメソッドがありません。
@Test
JUnit4 は、アノテーションが付けられたメソッドを@Test探します。クラス内に見つからない場合は、そのクラスを完全に省略します。