java - Arquillian jboss testng container and Junit tests -
i want run junit tests in jboss arquillian testng container. possible have junit test methods when having arquillian jboss testng container , write tests in junit? mean this.
import org.jboss.arquillian.testng.arquillian; import org.junit.test; public class testclass extends arquillian{ @test public void testmehtod1(){ //something test 1 } @test public void testmehtod2(){ //something test 2 } @test public void testmehtod3(){ //something test 3 } } i appreciate answer
Comments
Post a Comment