JUnit - Scrittura di un test
Qui vedremo un esempio completo di test JUnit utilizzando la classe POJO, la classe di logica aziendale e una classe di test, che verrà eseguita dal test runner.
Creare EmployeeDetails.java in C: \> JUNIT_WORKSPACE, che è una classe POJO.
public class EmployeeDetails {
private String name;
private double monthlySalary;
private int age;
/**
* @return the name
*/
public String getName() {
return name;
}
/**
* @param name the name to set
*/
public void setName(String name) {
this.name = name;
}
/**
* @return the monthlySalary
*/
public double getMonthlySalary() {
return monthlySalary;
}
/**
* @param monthlySalary the monthlySalary to set
*/
public void setMonthlySalary(double monthlySalary) {
this.monthlySalary = monthlySalary;
}
/**
* @return the age
*/
public int getAge() {
return age;
}
/**
* @param age the age to set
*/
public void setAge(int age) {
this.age = age;
}
}
EmployeeDetails classe è abituata a -
- ottenere / impostare il valore del nome del dipendente.
- ottenere / impostare il valore dello stipendio mensile del dipendente.
- ottenere / impostare il valore dell'età del dipendente.
Crea un file chiamato EmpBusinessLogic.java in C: \> JUNIT_WORKSPACE, che contiene la logica di business.
public class EmpBusinessLogic {
// Calculate the yearly salary of employee
public double calculateYearlySalary(EmployeeDetails employeeDetails) {
double yearlySalary = 0;
yearlySalary = employeeDetails.getMonthlySalary() * 12;
return yearlySalary;
}
// Calculate the appraisal amount of employee
public double calculateAppraisal(EmployeeDetails employeeDetails) {
double appraisal = 0;
if(employeeDetails.getMonthlySalary() < 10000){
appraisal = 500;
}else{
appraisal = 1000;
}
return appraisal;
}
}
EmpBusinessLogic classe è usata per calcolare -
- lo stipendio annuale di un dipendente.
- l'importo della stima di un dipendente.
Crea un file chiamato TestEmployeeDetails.java in C: \> JUNIT_WORKSPACE, che contiene i casi di test da testare.
import org.junit.Test;
import static org.junit.Assert.assertEquals;
public class TestEmployeeDetails {
EmpBusinessLogic empBusinessLogic = new EmpBusinessLogic();
EmployeeDetails employee = new EmployeeDetails();
//test to check appraisal
@Test
public void testCalculateAppriasal() {
employee.setName("Rajeev");
employee.setAge(25);
employee.setMonthlySalary(8000);
double appraisal = empBusinessLogic.calculateAppraisal(employee);
assertEquals(500, appraisal, 0.0);
}
// test to check yearly salary
@Test
public void testCalculateYearlySalary() {
employee.setName("Rajeev");
employee.setAge(25);
employee.setMonthlySalary(8000);
double salary = empBusinessLogic.calculateYearlySalary(employee);
assertEquals(96000, salary, 0.0);
}
}
TestEmployeeDetails class viene utilizzata per testare i metodi di EmpBusinessLogicclasse. It
- verifica lo stipendio annuale del dipendente.
- verifica l'importo della stima del dipendente.
Successivamente, crea una classe java archiviata denominata TestRunner.java in C: \> JUNIT_WORKSPACE per eseguire i casi di test.
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(TestEmployeeDetails.class);
for (Failure failure : result.getFailures()) {
System.out.println(failure.toString());
}
System.out.println(result.wasSuccessful());
}
}
Compila il test case e le classi Test Runner utilizzando javac.
C:\JUNIT_WORKSPACE>javac EmployeeDetails.java
EmpBusinessLogic.java TestEmployeeDetails.java TestRunner.java
Ora esegui il Test Runner, che eseguirà il test case definito nella classe Test Case fornita.
C:\JUNIT_WORKSPACE>java TestRunner
Verifica l'output.
true