मॉकिटो - जासूसी
मॉकिटो वास्तविक वस्तुओं पर जासूसी करने का विकल्प प्रदान करता है। जब जासूसी कहलाती है, तब वास्तविक वस्तु की वास्तविक विधि कहलाती है।
वाक्य - विन्यास
//create a spy on actual object
calcService = spy(calculator);
//perform operation on real object
//test the add functionality
Assert.assertEquals(mathApplication.add(20.0, 10.0),30.0,0);
उदाहरण
Step 1 − Create an interface called CalculatorService to provide mathematical functions
File: 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);
}
Step 2 − Create a JAVA class to represent MathApplication
File: 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);
}
}
Step 3 − Test the MathApplication class
चलो MathApplication वर्ग का परीक्षण करते हैं, इसमें एक कैलकुलेटर कैलकुलेटर का मजाक उड़ाते हुए। मॉक मॉकिटो द्वारा बनाया जाएगा।
यहां हमने मॉक ऑब्जेक्ट (जब) के माध्यम से एक मॉक विधि कॉल, ऐड () जोड़ा है। हालाँकि, परीक्षण के दौरान, हमने कॉल जोड़ने () से पहले घटाना () कहा है। जब हम Mockito.createStrictMock () का उपयोग करके एक नकली वस्तु बनाते हैं, तो विधि के निष्पादन का क्रम मायने रखता है।
File: MathApplicationTester.java
import static org.mockito.Mockito.spy;
import org.junit.Assert;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.mockito.runners.MockitoJUnitRunner;
// @RunWith attaches a runner with the test class to initialize the test data
@RunWith(MockitoJUnitRunner.class)
public class MathApplicationTester {
private MathApplication mathApplication;
private CalculatorService calcService;
@Before
public void setUp(){
mathApplication = new MathApplication();
Calculator calculator = new Calculator();
calcService = spy(calculator);
mathApplication.setCalculatorService(calcService);
}
@Test
public void testAdd(){
//perform operation on real object
//test the add functionality
Assert.assertEquals(mathApplication.add(20.0, 10.0),30.0,0);
}
class Calculator implements CalculatorService {
@Override
public double add(double input1, double input2) {
return input1 + input2;
}
@Override
public double subtract(double input1, double input2) {
throw new UnsupportedOperationException("Method not implemented yet!");
}
@Override
public double multiply(double input1, double input2) {
throw new UnsupportedOperationException("Method not implemented yet!");
}
@Override
public double divide(double input1, double input2) {
throw new UnsupportedOperationException("Method not implemented yet!");
}
}
}
Step 4 − Execute test cases
TestRunner नामक एक जावा क्लास फ़ाइल बनाएँ C:\> Mockito_WORKSPACE परीक्षण मामले को निष्पादित करने के लिए।
File: 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());
}
}
Step 5 − Verify the Result
उपयोग करने वाली कक्षाओं को संकलित करें javac संकलक निम्नानुसार है -
C:\Mockito_WORKSPACE>javac CalculatorService.java MathApplication.
java MathApplicationTester.java TestRunner.java
अब परिणाम देखने के लिए टेस्ट रनर दौड़ें -
C:\Mockito_WORKSPACE>java TestRunner
आउटपुट सत्यापित करें।
true