- EasyMock 教程
- EasyMock - 首页
- EasyMock - 概览
- EasyMock - 环境设置
- EasyMock - 第一个应用程序
- EasyMock - JUnit 集成
- EasyMock - 添加行为
- EasyMock - 验证行为
- EasyMock - 期待调用
- EasyMock - 变换调用
- EasyMock - 异常处理
- EasyMock - createMock
- EasyMock - createStrictMock
- EasyMock - createNiceMock
- EasyMock 有用资源
- EasyMock - 快速指南
- EasyMock - 有用资源
- EasyMock - 讨论
EasyMock - createStrictMock
EasyMock.createStrictMock() 创建一个模拟,并且还负责模拟在采取相应操作期间要执行的方法调用的顺序。
语法
calcService = EasyMock.createStrictMock(CalculatorService.class);
示例
步骤 1:创建一个名为 CalculatorService 的接口,以提供数学函数
文件:CalculatorService.java
public interface CalculatorService {
public double add(double input1, double input2);
public double subtract(double input1, double input2);
public double multiply(double input1, double input2);
public double divide(double input1, double input2);
}
步骤 2:创建一个 JAVA 类来表示 MathApplication
文件:MathApplication.java
public class MathApplication {
private CalculatorService calcService;
public void setCalculatorService(CalculatorService calcService){
this.calcService = calcService;
}
public double add(double input1, double input2){
return calcService.add(input1, input2);
}
public double subtract(double input1, double input2){
return calcService.subtract(input1, input2);
}
public double multiply(double input1, double input2){
return calcService.multiply(input1, input2);
}
public double divide(double input1, double input2){
return calcService.divide(input1, input2);
}
}
步骤 3:测试 MathApplication 类
我们通过在其中注入 calculatorService 的模拟来测试 MathApplication 类。模拟由 EasyMock 创建。
此处我们通过 expect() 向模拟对象添加了两个模拟方法调用,add() 和 subtract()。然而在测试过程中,我们先调用了 subtract() 再调用 add()。当我们使用 EasyMock.createStrictMock() 创建模拟对象时,方法执行的顺序很重要。
文件:MathApplicationTester.java
import org.easymock.EasyMock;
import org.easymock.EasyMockRunner;
import org.junit.Assert;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
@RunWith(EasyMockRunner.class)
public class MathApplicationTester {
private MathApplication mathApplication;
private CalculatorService calcService;
@Before
public void setUp(){
mathApplication = new MathApplication();
calcService = EasyMock.createStrictMock(CalculatorService.class);
mathApplication.setCalculatorService(calcService);
}
@Test
public void testAddAndSubtract(){
//add the behavior to add numbers
EasyMock.expect(calcService.add(20.0,10.0)).andReturn(30.0);
//subtract the behavior to subtract numbers
EasyMock.expect(calcService.subtract(20.0,10.0)).andReturn(10.0);
//activate the mock
EasyMock.replay(calcService);
//test the subtract functionality
Assert.assertEquals(mathApplication.subtract(20.0, 10.0),10.0,0);
//test the add functionality
Assert.assertEquals(mathApplication.add(20.0, 10.0),30.0,0);
//verify call to calcService is made or not
EasyMock.verify(calcService);
}
}
步骤 4:执行测试用例
在 C:\> EasyMock_WORKSPACE 中创建一个名为 TestRunner 的 java 类文件来执行测试用例。
文件:TestRunner.java
import org.junit.runner.JUnitCore;
import org.junit.runner.Result;
import org.junit.runner.notification.Failure;
public class TestRunner {
public static void main(String[] args) {
Result result = JUnitCore.runClasses(MathApplicationTester.class);
for (Failure failure : result.getFailures()) {
System.out.println(failure.toString());
}
System.out.println(result.wasSuccessful());
}
}
步骤 5:验证结果
使用 javac 编译器编译类,如下所示:
C:\EasyMock_WORKSPACE>javac MathApplicationTester.java
现在运行测试运行器以查看结果:
C:\EasyMock_WORKSPACE>java TestRunner
输出
验证输出。
testAddAndSubtract(com.tutorialspoint.mock.MathApplicationTester):
Unexpected method call CalculatorService.subtract(20.0, 10.0):
CalculatorService.add(20.0, 10.0): expected: 1, actual: 0
false
广告