TestNG笔记(二):创建一个testNG测试case

1 . 首先创建一个maven项目

TestNGDemo.png

2. 在main文件夹下创建一个需要被测试的类

package test.testng.demo;

public class TestHelloWorld {
    public String sayHi(){
        return "Hello World.";
    }
}

3. 在test文件夹下创建一个测试类

package test.testng.demo.script;

import org.testng.Assert;
import org.testng.annotations.Test;
import test.testng.demo.TestHelloWorld;

public class TestHelloWorldTest {
    @Test
    public void testcase(){
        TestHelloWorld helloWorld = new TestHelloWorld();
        String str = helloWorld.sayHi();
        Assert.assertNotNull(str);
        Assert.assertEquals(str, "Hello World.");
    }
}

那么如何生成测试报告呢,看下一章

你可能感兴趣的:(TestNG笔记(二):创建一个testNG测试case)