1 Star 0 Fork 1

ChristopDan/ztest

forked from EricShu/ztest 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
TestDemo1.java 1.30 KB
一键复制 编辑 原始数据 按行查看 历史
zhangfei 提交于 2017-11-15 11:12 . 增加用例描述
package com.test.testcase;
import java.lang.reflect.Method;
import org.testng.Assert;
import org.testng.Reporter;
import org.testng.annotations.BeforeMethod;
import org.testng.annotations.DataProvider;
import org.testng.annotations.Listeners;
import org.testng.annotations.Test;
import com.test.report.ZTestReport;
@Listeners({ZTestReport.class})
public class TestDemo1{
@BeforeMethod(description="测试方法前初始化")
public void beforeMethod(Method m){
if("testDemo3".equals(m.getName())){
int a = 1/0;
System.out.println(a);
}
}
@Test(description="测试DEMO")
public void testDemo(){
Reporter.log("this is demo!");
int a = 1/0;
System.out.println(a);
Assert.assertEquals("a", "b", "should be equals.");
}
@Test(description="测试DEMO1")
public void testDemo1(){
Reporter.log("this is demo!");
Assert.assertEquals("a", "b", "should be equals.");
}
@Test(description="测试DEMO2",dataProvider="test")
public void testDemo2(int a){
Reporter.log("this is demo!");
Assert.assertEquals(a, 1, "should be equals.");
}
@Test(description="测试DEMO3")
public void testDemo3(){
Reporter.log("this is demo!");
Assert.assertEquals("a", "a", "should be equals.");
}
@DataProvider(name="test")
public Object[][] dataProvider(){
return new Object[][]{{1},{2}};
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/ChristopDan/ztest.git
git@gitee.com:ChristopDan/ztest.git
ChristopDan
ztest
ztest
master

搜索帮助