Coding With Fun
Home Docker Django Node.js Articles Python pip guide FAQ Policy

JUnit - Write tests


May 15, 2021 jUnit


Table of contents


JUnit - Write tests

Here you'll see an example of applying the POJO class, the Business logic class, and the JUnit test of the test class running in test runner.

In C: C reate a POJO JUNIT_WORKSPACE called EmployeeDetails under the .java path.

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;
   }
}

The EmployeeDetails class is used

  • Obtain or set the value of the employee's name
  • Obtain or set the value of the employee's monthly salary
  • Obtain or set the value of the employee's age

In C: C reate a JUNIT_WORKSPACE class called EmpBusinessLogic .java the path

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;
   }
}

The EmpBusinessLogic class is used for calculations

  • The annual salary of the employee
  • The amount assessed by the employee

In C: U nder the JUNIT_WORKSPACE, create a test case class called TestEmployeeDetails .java to be tested

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 is a method used to test the EmpBusinessLogic class

  • Test the employee's annual salary
  • Test the employee's assessment amount

Now let's go in C: T he JUNIT_WORKSPACE a class called TestRunner .java to execute the test case class

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());
   }
} 

The Test case and Test Runner classes are compiled with javac

C:\JUNIT_WORKSPACE>javac EmployeeDetails.java 
EmpBusinessLogic.java TestEmployeeDetails.java TestRunner.java

Run Test Runner, which will now run the test cases defined and provided in the Test Case class

C:\JUNIT_WORKSPACE>java TestRunner

Check the results of the run

true