Tuesday 22 January 2013

TestNG Tutorial and Example – Getting Started


Prerequisites

TestNG requires JDK 5 or higher.

TestNG Download and installation

Download the current release version of TestNG from here http://testng.org/doc/download.html, unpacking the zip distribution to get TestNG decompression file, which includes the below sub files:
  • Testng-5.14.1.jar(please add to your project directly, you may also not be able to successfully build the codes only with this jar, because TestNG official decided that the release did not include all external jar files in order to keep the size down.)
  • Doc(TestNG tutorial material).
  • Example codes.
  • Testng source codes.
  • Readme.
As a beginner, I highly recommend you start and write TestNG from example codes and docs(best materials).
For the Eclipse plug-in, we suggest using the update site:
  • For Eclipse 3.4 and above, enter http://beust.com/eclipse.
  • For Eclipse 3.3 and below, enter http://beust.com/eclipse1.


Just a simple test code using TestNG

In TestNG, the developer would not need to extend any specific classes or enforce any naming conventions(You probably still remember the test cases name which need be started with “test” in Junit 3), after using TestNG, we just use the annotation @Test to signal to any methods of the class. There have two test methods in following illustrates.
TestNGSimpleTest.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package com.asjava;
import org.testng.annotations.*;
public class TestNGSimpleTest {
    int testInt;
    @BeforeMethod
    public void setUp() {
        testInt = 0;
    }
    @Test
    public void addTest() {
        testInt++;
        assert (testInt == 1);
        System.out.println("add test");
    }
    @Test
    public void subtractTest() {
        testInt--;
        assert (testInt == -1);
        System.out.println("subtract test");
    }
}
Note: The method setUp() will be invoked before any test methods are run.

Run Test with Command

Before you can run the testsw with command, you must configure TestNG using a special XML file, conventionally named testng.xml.
Here is Configuration file for TestNG
1
2
3
4
5
6
7
8
<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd" >
<suite name="Suite 1">
  <test name="testNG test1">
    <classes>
       <class name="com.asjava.TestNGSimpleTest" />
    </classes>
  </test>
</suite>
To run the test, please compile the class TestNGSimpleTest and then invoke TestNG with the following command:
java -ea -classpath .;testng-5.14.1.jar org.testng.TestNG testng.xml

Run TestNG Test with IDE

If you use IDEA as your development tool, please navigate to Tools->Run, then add unit test to TestNG configuration.
Here is screenshot result that run TestNG testcase:

Run TestNG test with Ant

Once you have compiled your test class into the build directory, you can invoke to run your test with command line ant task, here is ant project xml:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<project default="TestNGSimpleTest">
 <path id="main_cp">
   <pathelement location="lib/testng-5.14.1.jar"/>
   <pathelement location="build"/>
 </path>  
 <taskdef name="testng" classpathref="main_cp"
          classname="org.testng.TestNGAntTask" />
 <target name="test">
   <testng classpathref="main_cp" >
     <classfileset dir="build" includes="com.asjava/*.class"/>
   </testng>
 </target>
</project>

No comments:

Post a Comment