junit4的参数化测试z
程序员文章站
2023-12-23 20:53:33
...
我感觉它的设计意图就是为了解决我们有时候测试的时候,测试数据的构造不同,其他的均相同的情况下可能比较有用
参数化测试的编写稍微有点麻烦(当然这是相对于 JUnit 中其它特性而言):
1. 为准备使用参数化测试的测试类指定特殊的运行器 org.junit.runners.Parameterized。
2. 为测试类声明几个变量,分别用于存放期望值和测试所用数据。
3. 为测试类声明一个使用注解 org.junit.runners.Parameterized.Parameters 修饰的,
返回值为 java.util.Collection 的公共静态方法,并在此方法中初始化所有需要测试的参数对。
4. 为测试类声明一个带有参数的公共构造函数,并在其中为第二个环节中声明的几个变量赋值。
5. 编写测试方法,使用定义的变量作为参数进行测试。
Java代码
import java.util.Collection;
import junit.framework.Assert;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.Parameterized;
import org.junit.runners.Parameterized.Parameters;
@RunWith(Parameterized.class)
public class ParameterizedTest {
private String extected;
private String target;
public ParameterizedTest(String target,String extected) {
super();
this.target = target;
this.extected = extected;
}
@Parameters
public static Collection<?> contructData(){
return Arrays.asList(new Object[][]{
{"aaa","AAA"},
{null,null},
{"",""},
{"BBB","BBB"}
});
}
@Parameters
public static Collection<?> contructData1(){
return Arrays.asList(new Object[][]{
{"aaa1","AAA1"},
{null,null},
{"",""},
{"BBB1","BBB1"}
});
}
public String toUpperCase(String str){
if(null == str){
return str;
}
return str.toUpperCase();
}
@Test
public void testUpperCase(){
Assert.assertEquals(extected, toUpperCase(target));
}
}
同时,感觉这个地方实现的不好的地方就是整个类只有第一个标有@Parameters的static静态方法起作用,也就
限制了它的灵活使用。随便看下它里面对注解的处理部分
List<FrameworkMethod> methods= testClass
Java代码
.getAnnotatedMethods(Parameters.class);
or (FrameworkMethod each : methods) {
int modifiers= each.getMethod().getModifiers();
if (Modifier.isStatic(modifiers) && Modifier.isPublic(modifiers))
return each;
实际上它是找到第一个就返回了,其实我们如果为了灵活的话,可以再标注下,然后去找一个特殊的方法,然后多个方法的parametrized的测试就可以放到一个类里面了。当然这么做的话,肯定有有一些其他的不好的地方。
参数化测试的编写稍微有点麻烦(当然这是相对于 JUnit 中其它特性而言):
1. 为准备使用参数化测试的测试类指定特殊的运行器 org.junit.runners.Parameterized。
2. 为测试类声明几个变量,分别用于存放期望值和测试所用数据。
3. 为测试类声明一个使用注解 org.junit.runners.Parameterized.Parameters 修饰的,
返回值为 java.util.Collection 的公共静态方法,并在此方法中初始化所有需要测试的参数对。
4. 为测试类声明一个带有参数的公共构造函数,并在其中为第二个环节中声明的几个变量赋值。
5. 编写测试方法,使用定义的变量作为参数进行测试。
Java代码
import java.util.Collection;
import junit.framework.Assert;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.Parameterized;
import org.junit.runners.Parameterized.Parameters;
@RunWith(Parameterized.class)
public class ParameterizedTest {
private String extected;
private String target;
public ParameterizedTest(String target,String extected) {
super();
this.target = target;
this.extected = extected;
}
@Parameters
public static Collection<?> contructData(){
return Arrays.asList(new Object[][]{
{"aaa","AAA"},
{null,null},
{"",""},
{"BBB","BBB"}
});
}
@Parameters
public static Collection<?> contructData1(){
return Arrays.asList(new Object[][]{
{"aaa1","AAA1"},
{null,null},
{"",""},
{"BBB1","BBB1"}
});
}
public String toUpperCase(String str){
if(null == str){
return str;
}
return str.toUpperCase();
}
@Test
public void testUpperCase(){
Assert.assertEquals(extected, toUpperCase(target));
}
}
同时,感觉这个地方实现的不好的地方就是整个类只有第一个标有@Parameters的static静态方法起作用,也就
限制了它的灵活使用。随便看下它里面对注解的处理部分
List<FrameworkMethod> methods= testClass
Java代码
.getAnnotatedMethods(Parameters.class);
or (FrameworkMethod each : methods) {
int modifiers= each.getMethod().getModifiers();
if (Modifier.isStatic(modifiers) && Modifier.isPublic(modifiers))
return each;
实际上它是找到第一个就返回了,其实我们如果为了灵活的话,可以再标注下,然后去找一个特殊的方法,然后多个方法的parametrized的测试就可以放到一个类里面了。当然这么做的话,肯定有有一些其他的不好的地方。
推荐阅读
-
junit4的参数化测试z
-
[Java版]Selenium自动化测试:不得不掌握的Java基础
-
关于Selenium的UI自动化测试屏幕截图功能实例代码
-
关于Selenium的UI自动化测试屏幕截图功能实例代码
-
loadrunner怎么设置参数化?loadrunner参数化设置的图文教程
-
SQL参数化查询的另一个理由 命中执行计划
-
Android 自动化测试经验分享 UiObejct.getFromParent()的使用方法
-
loadrunner怎么设置参数化?loadrunner参数化设置的图文教程
-
Appium Python自动化测试之环境搭建的步骤
-
JavaScript在web自动化测试中的作用示例详解