Java: Guide: TestNG Essentials

Introduction

What Is?

 

Installing TestNG

TestNG        6.7.0.20120802_0752        org.testng.eclipse.feature.group        Cedric Beust

 

Adding to BuildPath

 

        

 

 

public class SampleTest {

 

        @Test

        public void testApp()

        {

                

        }

        

}

 

 

 

 

 

 

import org.testng.annotations.Test;

 

public class SampleTest {

 

        @Test

        public void testApp()

        {

                

        }

        

}

 

@BeforeMethod

@BeforeClass

@BeforeTest

@BeforeSuite

@AfterMethod

@AfterClass

@AfterSuite

@DataProvider

 

 

 

 

 

 

XXX

Tags