TestNG plugin is not present in Run configuration -
i going use testng in work not authorised me install testng plugin - http://beust.com/eclipse/ have download testng jar , import in eclipse script supporting testng package , annotation when go run script on run configuration testng plugin not found not able run script through testng.
please me.
first of delete testng you've downloaded , use eclipse marketplace such download. can find here: help->eclipse marketplace
type testng
search , install testng eclipse
.
after need create such file testng.xml should consist of:
<suite name="suite" parallel="none"> <parameter name="properties" value="test.properties" /> <test name="put test name here"> <classes> <class name="put class name here" /> <methods></methods> </classes> </test>
after right taping @ testng.xml file able run test testng suite.
Comments
Post a Comment