TestNG-쓰기 테스트
TestNG에서 테스트를 작성하는 것은 기본적으로 다음 단계를 포함합니다.
테스트의 비즈니스 로직을 작성하고 코드에 TestNG 주석을 삽입합니다.
testng.xml 파일 또는 build.xml에 테스트에 대한 정보 (예 : 클래스 이름, 실행하려는 그룹 등)를 추가합니다.
TestNG를 실행합니다.
여기에서는 POJO 클래스, 비즈니스 로직 클래스 및 TestNG에서 실행할 테스트 xml을 사용하는 TestNG 테스트의 완전한 예제를 볼 수 있습니다.
창조하다 EmployeeDetails.java 에 C:\>TestNG_WORKSPACE, 이는 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 클래스는-
- 직원 이름 값을 가져 오거나 설정합니다.
- 직원의 월급 값을 가져 오거나 설정합니다.
- 직원의 나이 값을 얻거나 설정합니다.
만들기 EmpBusinessLogic.java 에 C:\>TestNG_WORKSPACE, 비즈니스 로직을 포함합니다.
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 클래스는 계산에 사용됩니다-
- 직원의 연봉.
- 직원의 평가 금액.
이제 TestNG 클래스를 만들어 보겠습니다. TestEmployeeDetails.javaC : \> TestNG_WORKSPACE. TestNG 클래스는 하나 이상의 TestNG 주석을 포함하는 Java 클래스입니다. 이 클래스는 테스트 할 테스트 케이스를 포함합니다. TestNG 테스트는 @BeforeXXX 및 @AfterXXX 주석으로 구성 할 수 있으며 (TestNG- 실행 절차 장에서 확인할 수 있음), 특정 시점 전후에 일부 Java 로직을 수행 할 수 있습니다.
import org.testng.Assert;
import org.testng.annotations.Test;
public class TestEmployeeDetails {
EmpBusinessLogic empBusinessLogic = new EmpBusinessLogic();
EmployeeDetails employee = new EmployeeDetails();
@Test
public void testCalculateAppriasal() {
employee.setName("Rajeev");
employee.setAge(25);
employee.setMonthlySalary(8000);
double appraisal = empBusinessLogic.calculateAppraisal(employee);
Assert.assertEquals(500, appraisal, 0.0, "500");
}
// Test to check yearly salary
@Test
public void testCalculateYearlySalary() {
employee.setName("Rajeev");
employee.setAge(25);
employee.setMonthlySalary(8000);
double salary = empBusinessLogic.calculateYearlySalary(employee);
Assert.assertEquals(96000, salary, 0.0, "8000");
}
}
TestEmployeeDetails 클래스는 방법을 테스트하는 데 사용됩니다. EmpBusinessLogic수업. 다음을 수행합니다.
직원의 연봉을 테스트합니다.
직원의 평가 금액을 테스트합니다.
테스트를 실행하기 전에 일반적으로 testng.xml이라는 특수 XML 파일을 사용하여 TestNG를 구성해야합니다. 이 파일의 구문은 매우 간단하며 그 내용은 다음과 같습니다. 이 파일 만들기C:\>TestNG_WORKSPACE.
<?xml version = "1.0" encoding = "UTF-8"?>
<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd" >
<suite name = "Suite1">
<test name = "test1">
<classes>
<class name = "TestEmployeeDetails"/>
</classes>
</test>
</suite>
위 파일의 내용은 다음과 같습니다.
제품군은 하나의 XML 파일로 표시됩니다. 하나 이상의 테스트를 포함 할 수 있으며 <suite> 태그로 정의됩니다.
태그 <test>는 하나의 테스트를 나타내며 하나 이상의 TestNG 클래스를 포함 할 수 있습니다.
<class> 태그는 TestNG 클래스를 나타냅니다. 하나 이상의 TestNG 주석을 포함하는 Java 클래스입니다. 하나 이상의 테스트 방법을 포함 할 수 있습니다.
javac를 사용하여 테스트 케이스 클래스를 컴파일하십시오.
C:\TestNG_WORKSPACE>javac EmployeeDetails.java EmpBusinessLogic.java TestEmployeeDetails.java
이제 다음 명령으로 TestNG-
C:\TestNG_WORKSPACE>java -cp "C:\TestNG_WORKSPACE" org.testng.TestNG testng.xml
모든 작업이 올바르게 완료되면 콘솔에서 테스트 결과를 볼 수 있습니다. 또한 TestNG는 폴더에 매우 멋진 HTML 보고서를 생성합니다.test-output현재 디렉토리에 자동으로 생성됩니다. 그것을 열고 index.html을로드하면 아래 이미지와 유사한 페이지가 표시됩니다.