top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

What is TestNG and how is it better than Junit?

+2 votes
144 views
What is TestNG and how is it better than Junit?
posted Oct 4, 2016 by Jdk

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes

JUnit provides an easier and readable approach to test known as Parameterized test. Both TestNG and JUnit supports parameterized test but differ in the way they define the parameter value. Let see this one by one. The "@RunWith" and "@Parameter" annotations are used to provide parameter value for the unit test

answer Oct 14, 2016 by Manikandan J
...