- 浏览: 957417 次
- 性别:
- 来自: 江西上饶
文章分类
- 全部博客 (460)
- p.spring (56)
- p.maven (20)
- p.ant (17)
- p.jee (18)
- p.jse (33)
- p.ofbiz (31)
- p.软件工程 (8)
- p.struts2 (5)
- p.hibernate (5)
- linux (25)
- 设计模式 (2)
- p.javascript (11)
- 硬件 (1)
- p.jsp (2)
- p.windows批处理 (1)
- 操作系统问题 (5)
- 算法 (1)
- p.mysql (7)
- p.sql (5)
- p.c (1)
- google产品 (0)
- 内存 (1)
- p.struts (1)
- p.freemarker (7)
- p.css (4)
- p.log4j (10)
- p.html (3)
- 淘宝产品 (0)
- 其他 (3)
- 编译器 (0)
- svn (4)
- p.spring.security (11)
- 图形 (0)
- p.xml (1)
- p.ssh (0)
- p.jquery (4)
- p.jdbc (3)
- p.flex (0)
- p.c++ (0)
- p.c#Net (0)
- p.assembly (0)
- p.sqlserver (0)
- p.其他 (3)
- p.webwork (21)
- p.wap (12)
- p.cglib (1)
- p.jee服务器 (11)
- windows (2)
- p.iphone (1)
- p.java.分布式与集群 (2)
- p.ibatis (16)
- p.eclipse (5)
- 架构 (2)
- http协议 (5)
- 我的个人标准 (2)
- 多线程 (1)
- 奇怪问题 (5)
- p.jira (13)
- p.httpclient (1)
- 服务器.apache (11)
- 安全防范 (1)
- p.PODAM (1)
- p.junit (16)
- fop (2)
- 硬盘安装 (1)
- powerdesigner (0)
- 单元测试 (1)
- apache commons (4)
- tomcat+apache集群 (10)
- 各类诡辩 (1)
- 安卓 (8)
- qvod (1)
- java编程基础知识考试考点及答案 (0)
- 工作总结 (4)
- oracle (0)
- spring的util工具 (3)
- json (2)
- maven (3)
- jms (19)
- p.bat (3)
- hadoop (2)
- git (3)
- nginx (1)
- p.移动开发 (1)
- shiro (3)
- 游戏破解 (1)
- react-native (7)
- ios开发 (1)
- webmagic (6)
- socks5 (1)
最新评论
-
weituotian:
说的不好,没人看的
公司系统中的菜单功能和权限功能 -
石不易:
非常详细的注解~
绑定端口和IP,Listen 与VirtualHost指令 -
spring_springmvc:
spring mvc demo教程源代码下载,地址:http: ...
spring mvc -
liyixing1:
PandaDONG 写道谢谢你啊,我已经下下来了,只是还有很多 ...
jira war安装 -
liyixing1:
PandaDONG 写道谢谢你啊,我已经下下来了,只是还有很多 ...
jira war安装
套件运行器
它可以运行多个测试。
package test;
public class Calculator {
public double add(double number1, double number2) {
return number1 + number2;
}
}
package test;
import org.junit.Assert;
import org.junit.Test;
public class CalculatorTest {
@Test
public void a() throws Exception {
Calculator c = new Calculator();
double result = c.add(0, 1);
Assert.assertEquals("结果不正确", result,1, 0);
}
@Test
public void a1() throws Exception {
Calculator c = new Calculator();
double result = c.add(1, 2);
Assert.assertEquals("结果不正确", result,3, 0);
}
}
package test;
import org.junit.Assert;
import org.junit.Test;
public class B {
@Test
public void b() throws Exception {
Calculator c = new Calculator();
double result = c.add(1, 1);
Assert.assertEquals("结果不正确", result, 2, 0);
}
}
package test;
import org.junit.runner.RunWith;
import org.junit.runners.Suite;
import org.junit.runners.Suite.SuiteClasses;
@RunWith(value = Suite.class)
@SuiteClasses(value = { CalculatorTest.class, B.class })
public class A1 {
}
这里有两个测试类,以及一个设置为了套件运行器的测试类。
运行A1,会讲两个测试都运行了。
另外测试套件可以去调用测试套件。
增加我们的测试
package test;
import java.util.Arrays;
import java.util.Collection;
import org.junit.Assert;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.Parameterized;
import org.junit.runners.Parameterized.Parameters;
@RunWith(value = Parameterized.class)
public class ParameterTest {
private double expected;
private double valueOne;
private double valueTwo;
public ParameterTest(double expected, double valueOne, double valueTwo) {
this.expected = expected;
this.valueOne = valueOne;
this.valueTwo = valueTwo;
}
@Parameters
public static Collection<Integer[]> getTestParameters() {
return Arrays.asList(new Integer[][] { { 2, 1, 1 }, // expected,
// valueOne,
// valueTwo
{ 3, 2, 1 }, // expected, valueOne, valueTwo
{ 4, 3, 1 }, // expected, valueOne, valueTwo
});
}
@Test
public void sum() {
Calculator calc = new Calculator();
Assert.assertEquals(expected, calc.add(valueOne, valueTwo), 0);
}
}
package test;
import org.junit.runner.RunWith;
import org.junit.runners.Suite;
import org.junit.runners.Suite.SuiteClasses;
@RunWith(value = Suite.class)
@SuiteClasses(value = { ParameterTest.class })
public class A2 {
}
package test;
import org.junit.runner.RunWith;
import org.junit.runners.Suite;
import org.junit.runners.Suite.SuiteClasses;
@RunWith(value = Suite.class)
@SuiteClasses(value = { A1.class, A2.class })
public class AllTest {
}
在AllTest 设置的SuiteClasses里面的类本身就是测试套件。
它可以运行多个测试。
package test;
public class Calculator {
public double add(double number1, double number2) {
return number1 + number2;
}
}
package test;
import org.junit.Assert;
import org.junit.Test;
public class CalculatorTest {
@Test
public void a() throws Exception {
Calculator c = new Calculator();
double result = c.add(0, 1);
Assert.assertEquals("结果不正确", result,1, 0);
}
@Test
public void a1() throws Exception {
Calculator c = new Calculator();
double result = c.add(1, 2);
Assert.assertEquals("结果不正确", result,3, 0);
}
}
package test;
import org.junit.Assert;
import org.junit.Test;
public class B {
@Test
public void b() throws Exception {
Calculator c = new Calculator();
double result = c.add(1, 1);
Assert.assertEquals("结果不正确", result, 2, 0);
}
}
package test;
import org.junit.runner.RunWith;
import org.junit.runners.Suite;
import org.junit.runners.Suite.SuiteClasses;
@RunWith(value = Suite.class)
@SuiteClasses(value = { CalculatorTest.class, B.class })
public class A1 {
}
这里有两个测试类,以及一个设置为了套件运行器的测试类。
运行A1,会讲两个测试都运行了。
另外测试套件可以去调用测试套件。
增加我们的测试
package test;
import java.util.Arrays;
import java.util.Collection;
import org.junit.Assert;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.Parameterized;
import org.junit.runners.Parameterized.Parameters;
@RunWith(value = Parameterized.class)
public class ParameterTest {
private double expected;
private double valueOne;
private double valueTwo;
public ParameterTest(double expected, double valueOne, double valueTwo) {
this.expected = expected;
this.valueOne = valueOne;
this.valueTwo = valueTwo;
}
@Parameters
public static Collection<Integer[]> getTestParameters() {
return Arrays.asList(new Integer[][] { { 2, 1, 1 }, // expected,
// valueOne,
// valueTwo
{ 3, 2, 1 }, // expected, valueOne, valueTwo
{ 4, 3, 1 }, // expected, valueOne, valueTwo
});
}
@Test
public void sum() {
Calculator calc = new Calculator();
Assert.assertEquals(expected, calc.add(valueOne, valueTwo), 0);
}
}
package test;
import org.junit.runner.RunWith;
import org.junit.runners.Suite;
import org.junit.runners.Suite.SuiteClasses;
@RunWith(value = Suite.class)
@SuiteClasses(value = { ParameterTest.class })
public class A2 {
}
package test;
import org.junit.runner.RunWith;
import org.junit.runners.Suite;
import org.junit.runners.Suite.SuiteClasses;
@RunWith(value = Suite.class)
@SuiteClasses(value = { A1.class, A2.class })
public class AllTest {
}
在AllTest 设置的SuiteClasses里面的类本身就是测试套件。
发表评论
-
DEBUG -- CLOSE BY CLIENT STACK TRACE
2011-10-20 10:28 27634在单元测试测试环境下主要参数两个错误信息: 1.java.la ... -
奇怪的乱码
2011-10-20 00:14 1370通过ant运行build,然后启动测试。测试的时候有log4j ... -
mock对象测试
2011-10-17 22:48 1310package mock; public class Acc ... -
依赖外部资源时解决方案-----存根
2011-10-17 22:08 1454package stubbing; import java. ... -
cobertura做测试覆盖率 ant的配置
2011-09-25 23:05 7474cobertura原理大致如下: 首先修改我们编译后的clas ... -
软件测试的种类
2011-09-18 17:58 1151acceptance test 验收测试 你的程序满足了客户的 ... -
hamcrest
2011-09-18 16:51 1205在一个测试用例中,有时候不得不存在多个断言,比如 @Test ... -
@Ignore 指定跳过测试用例
2011-09-18 16:06 1747在3.x版本中,如果我们不想启动某些测试,需要将方法名更改为非 ... -
@Test
2011-09-17 23:27 8095@Test注解是测试的基础,它提供了其他作用 1.指定将会抛 ... -
测试规范
2011-09-16 00:27 1003测试方法名一般有两种 testxxxx xxxx是要测试的域 ... -
@Before, @BeforeClass, @After, @AfterClass
2011-09-15 23:30 7816@Before, @BeforeClass, @After, ... -
@Parameters Parameterized runner
2011-09-14 22:46 1617先看一个例子 package te ... -
junit的核心对象
2011-09-12 21:52 1177概念责任Assert不同条件的断言。如果成功,无什么特殊的信息 ... -
基础知识
2011-09-12 20:01 928注解 @Before, @BeforeClass, @Afte ... -
junit网址
2011-08-31 16:29 1012http://junit.sourceforge.net/ h ...
相关推荐
Artima SuiteRunner是一款开源的测试框架,它为Java开发者提供了更为高效和灵活的API一致性测试与单元测试解决方案。作为JUnit测试用例的扩展和增强工具,SuiteRunner在测试执行、结果展示以及定制化方面有着显著的...
用于 benchmark.js 的 Benchmark Suite Runner 安装 新产品经理 npm install benchrunner 鲍尔 bower install benchrunner 用法 你可以写一个这样的套件: (function(root) { var suites = root.benchrunner....
还有Suite Runner,可以组合多个测试类进行一次性执行。 自定义Runner是JUnit强大的扩展点,开发者可以根据需求实现特定的测试逻辑,例如,测试性能、并发测试或者模拟网络环境等。理解Runner的工作原理对于提升...
在`run_suite()`函数中,我们需要构建一个`unittest.TestSuite`对象,将所有的测试用例添加进去,然后用`runner.run(suite)`执行测试并生成报告。 `HTMLTestRunnerNew.py`可能对默认的报告样式进行了自定义,如调整...
JUnit套件并行运行器 这是一个带有POC的简单WIP项目,其思想是从不同的测试包中逐一... 为了触发此操作,只需运行SuiteRunner.java,这将一次又一次触发所有Suite。 请记住,这是我的WIP,因此可能有很多未使用的代码。
适用于NetSuite的Mocha 它是NetSuite的单元测试框架。...创建脚本创建Suitelet或预定脚本条目函数名称-Suitelet的“ suite.test.SuiteRunner.suiteletEntry”和调度脚本的“ suite.test.SuiteRunner.scheduled
- 测试套件(Test Suite):一个或多个测试用例的集合,通常包含在testcase目录下的YAML文件中。 - 测试步骤(Test Steps):每个测试用例由一系列步骤组成,每步执行一个请求并进行断言。 4. **运行测试**: - ...
注:如果一开始看不懂的可以从上个文章开始看起 上一个博文我们已经完成了系统的登录及测试用例的创建,接下来我们需要对这些测试用例进行执行,也就是执行登录之后能够一起既可以创建测试用例,也可以修改测试用例...
Node.js的简单测试框架 简单,顺序,基于异常的Node JS测试运行...const suite = new TestRunner ( 'My suite' ) ; suite . test ( 'My test' , ( ) => { if ( false ) { throw new Error ( '...' ) } } ) ; suite .
例如:`java -jar commandlinerunner.jar -t /path/to/testsuite.xml -r /path/to/reports -g /path/to/global.properties`. 4. **执行测试**:在命令行中输入完整的命令后,按下回车,CLI将开始执行测试,并在指定...
api-bench-runner 这是一个CLI工具,可用于运行测试。 它的界面灵感来自。用法该工具的思想是允许您使用类似于mocha易于使用的挂钩在一个或多个脚本中定义测试。测试文件示例'use strict' ;suite ( 'Status Route' ,...
3. **测试套件**:通过`@RunWith(Suite.class)`注解并指定`Suite.SuiteClasses`来组合多个测试类。 4. **测试监听器**:通过`@Before`、`@After`、`@BeforeClass`和`@AfterClass`注解定义在测试前后执行的辅助方法。...
HTMLTestRunner 带饼状图 # -*- coding: UTF-8 -*- import unittest from test.test_mathfunc import TestMathFunc from test.HTMLTestRunner_PY3 import HTMLTestRunner import test.tt.test_... runner.run(suite)
LRS一致性测试套件 描述 这是一个NodeJS项目,它基于ADL...$ cd lrs-conformance-test-suite $ npm install 验证安装 $ node bin/console_runner.js --help Usage: console_runner [options] Options: -h, --help
测试集可以使用_suite_类来表示,例如:`public class MyTestSuite { @Suite.SuiteClasses({ MyTest1.class, MyTest2.class }) public static class AllTests { }}` 测试运行器 测试运行器是执行测试集的程序,...
3. `TestSuite`: JUnit 测试套件,用于组织和运行多个测试类。你可能在这里配置使用自定义 Test Runner。 4. `pom.xml`: Maven 项目配置文件,包含了项目的依赖信息。在这个项目中,你可能需要引入 JUnit 和其他相关...
ocaml-testrunner your_test_suite.ml ``` ### 3. 结果报告 测试结果将按照指定的格式输出,包括测试用例的名称、是否通过以及可能的错误信息。如果需要,还可以配置生成 HTML 或 JSON 格式的报告,便于进一步分析...