JUnit - 使用断言


断言

所有断言都在 Assert 类中。

public class Assert extends java.lang.Object

此类提供了一组断言方法,对于编写测试很有用。仅记录失败的断言。Assert 类的一些重要方法如下 -

先生。 方法与说明
1

void assertEquals(预期布尔值,实际布尔值)

检查两个基元/对象是否相等。

2

void断言True(布尔条件)

检查条件是否为真。

3

void断言False(布尔条件)

检查条件是否为假。

4

无效断言NotNull(对象对象)

检查对象是否不为空。

5

无效断言Null(对象对象)

检查对象是否为空。

6

无效断言相同(对象1,对象2)

assertSame() 方法测试两个对象引用是否指向同一个对象。

7

无效断言NotSame(对象1,对象2)

assertNotSame() 方法测试两个对象引用是否不指向同一个对象。

8

无效assertArrayEquals(expectedArray, resultArray);

assertArrayEquals() 方法将测试两个数组是否彼此相等。

让我们在示例中使用上述一些方法。在 C:\>JUNIT_WORKSPACE 中创建名为TestAssertions.java的 java 类文件。

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);
   }
}

接下来,在 C:\>JUNIT_WORKSPACE 中创建一个名为TestRunner.java的 java 类文件来执行测试用例。

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 注释告诉 JUnit 它所附加的 public void 方法可以作为测试用例运行。

2

@前

一些测试需要先创建类似的对象才能运行。使用 @Before 注释 public void 方法会导致该方法在每个测试方法之前运行。

3

@后

如果在 Before 方法中分配外部资源,则需要在测试运行后释放它们。使用 @After 注释 public void 方法会导致该方法在 Test 方法之后运行。

4

@课前

使用 @BeforeClass 注释 public static void 方法会导致该方法在类中的任何测试方法之前运行一次。

5

@下课以后

这将在所有测试完成后执行该方法。这可用于执行清理活动。

6

@忽略

Ignore 注解用于忽略测试,并且该测试将不会被执行。

在C:\>JUNIT_WORKSPACE中创建一个名为JunitAnnotation.java的java类文件来测试注释。

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");
   }
}

接下来,在C:\>JUNIT_WORKSPACE中创建一个名为TestRunner.java的java类文件来执行注解。

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