JUnit-アサーションの使用
アサーション
すべてのアサーションはAssertクラスにあります。
public class Assert extends java.lang.Object
このクラスは、テストの作成に役立つ一連のアサーションメソッドを提供します。失敗したアサーションのみが記録されます。Assertクラスの重要なメソッドのいくつかは次のとおりです-
シニア番号 | 方法と説明 |
---|---|
1 | void assertEquals(boolean expected, boolean actual) 2つのプリミティブ/オブジェクトが等しいことを確認します。 |
2 | void assertTrue(boolean condition) 条件が真であることを確認します。 |
3 | void assertFalse(boolean condition) 条件が偽であることを確認します。 |
4 | void assertNotNull(Object object) オブジェクトがnullでないことを確認します。 |
5 | void assertNull(Object object) オブジェクトがnullであることを確認します。 |
6 | void assertSame(object1, object2) assertSame()メソッドは、2つのオブジェクト参照が同じオブジェクトを指しているかどうかをテストします。 |
7 | void assertNotSame(object1, object2) assertNotSame()メソッドは、2つのオブジェクト参照が同じオブジェクトを指していないかどうかをテストします。 |
8 | void assertArrayEquals(expectedArray, resultArray); assertArrayEquals()メソッドは、2つの配列が互いに等しいかどうかをテストします。 |
例では、上記の方法のいくつかを使用してみましょう。名前の付いたJavaクラスファイルを作成しますTestAssertions.java C:\> JUNIT_WORKSPACEで。
import org.junit.Test;
import static org.junit.Assert.*;
public class TestAssertions {
@Test
public void testAssertions() {
//test data
String str1 = new String ("abc");
String str2 = new String ("abc");
String str3 = null;
String str4 = "abc";
String str5 = "abc";
int val1 = 5;
int val2 = 6;
String[] expectedArray = {"one", "two", "three"};
String[] resultArray = {"one", "two", "three"};
//Check that two objects are equal
assertEquals(str1, str2);
//Check that a condition is true
assertTrue (val1 < val2);
//Check that a condition is false
assertFalse(val1 > val2);
//Check that an object isn't null
assertNotNull(str1);
//Check that an object is null
assertNull(str3);
//Check if two object references point to the same object
assertSame(str4,str5);
//Check if two object references not point to the same object
assertNotSame(str1,str3);
//Check whether two arrays are equal to each other.
assertArrayEquals(expectedArray, resultArray);
}
}
次に、という名前のJavaクラスファイルを作成します TestRunner.java C:\> JUNIT_WORKSPACEで、テストケースを実行します。
import org.junit.runner.JUnitCore;
import org.junit.runner.Result;
import org.junit.runner.notification.Failure;
public class TestRunner2 {
public static void main(String[] args) {
Result result = JUnitCore.runClasses(TestAssertions.class);
for (Failure failure : result.getFailures()) {
System.out.println(failure.toString());
}
System.out.println(result.wasSuccessful());
}
}
javacを使用してテストケースクラスとテストランナークラスをコンパイルします。
C:\JUNIT_WORKSPACE>javac TestAssertions.java TestRunner.java
次に、提供されたテストケースクラスで定義されたテストケースを実行するテストランナーを実行します。
C:\JUNIT_WORKSPACE>java TestRunner
出力を確認します。
true
注釈
アノテーションは、コードに追加してメソッドやクラスに適用できるメタタグのようなものです。JUnitのこれらのアノテーションは、テストメソッドに関する次の情報を提供します-
- テストメソッドの前後にどのメソッドを実行するか。
- すべてのメソッドの前後に実行されるメソッド、および。
- 実行中に無視されるメソッドまたはクラス。
次の表に、JUnitでの注釈とその意味のリストを示します。
シニア番号 | 注釈と説明 |
---|---|
1 | @Test Testアノテーションは、それがアタッチされているpublicvoidメソッドをテストケースとして実行できることをJUnitに通知します。 |
2 | @Before いくつかのテストでは、実行する前に同様のオブジェクトを作成する必要があります。public voidメソッドに@Beforeアノテーションを付けると、そのメソッドが各Testメソッドの前に実行されます。 |
3 | @After Beforeメソッドで外部リソースを割り当てる場合は、テストの実行後にそれらを解放する必要があります。public voidメソッドに@Afterアノテーションを付けると、そのメソッドはTestメソッドの後に実行されます。 |
4 | @BeforeClass public static voidメソッドに@BeforeClassアノテーションを付けると、クラス内のテストメソッドの前に1回実行されます。 |
5 | @AfterClass これにより、すべてのテストが終了した後にメソッドが実行されます。これは、クリーンアップアクティビティを実行するために使用できます。 |
6 | @Ignore Ignoreアノテーションは、テストを無視するために使用され、そのテストは実行されません。 |
名前の付いたJavaクラスファイルを作成します JunitAnnotation.java C:\> JUNIT_WORKSPACEで、注釈をテストします。
import org.junit.After;
import org.junit.AfterClass;
import org.junit.Before;
import org.junit.BeforeClass;
import org.junit.Ignore;
import org.junit.Test;
public class JunitAnnotation {
//execute before class
@BeforeClass
public static void beforeClass() {
System.out.println("in before class");
}
//execute after class
@AfterClass
public static void afterClass() {
System.out.println("in after class");
}
//execute before test
@Before
public void before() {
System.out.println("in before");
}
//execute after test
@After
public void after() {
System.out.println("in after");
}
//test case
@Test
public void test() {
System.out.println("in test");
}
//test case ignore and will not execute
@Ignore
public void ignoreTest() {
System.out.println("in ignore test");
}
}
次に、という名前のJavaクラスファイルを作成します TestRunner.java C:\> JUNIT_WORKSPACEで、注釈を実行します。
import org.junit.runner.JUnitCore;
import org.junit.runner.Result;
import org.junit.runner.notification.Failure;
public class TestRunner {
public static void main(String[] args) {
Result result = JUnitCore.runClasses(JunitAnnotation.class);
for (Failure failure : result.getFailures()) {
System.out.println(failure.toString());
}
System.out.println(result.wasSuccessful());
}
}
javacを使用してテストケースクラスとテストランナークラスをコンパイルします。
C:\JUNIT_WORKSPACE>javac JunitAnnotation.java TestRunner.java
次に、提供されたテストケースクラスで定義されたテストケースを実行するテストランナーを実行します。
C:\JUNIT_WORKSPACE>java TestRunner
出力を確認します。
in before class
in before
in test
in after
in after class
true