測試註釋的快速示例

@Test 註釋可以應用於任何方法。此註釋將類或方法標記為測試的一部分。

  1. 方法級別的 @Test - 將註釋方法標記為測試方法
  2. @Test 在類
    • 類級別 @Test 註釋的效果是使類的所有公共方法成為測試方法,即使它們沒有註釋。
    • 如果要新增某些屬性,也可以在方法上重複 @Test 註釋。

@Test 在方法級別的示例

import org.testng.annotations.Test;

public class TestClass1 {
    public void notTestMethod() {
    }

    @Test
    public void testMethod() {
    }
}

@Test 在類的例子

import org.testng.annotations.Test;

@Test
public class TestClass2 {
    public void testMethod1() {
    }

    @Test
    public void testMethod2() {
    }
}