What is JUnit and what are the features of it

0 votes
Jun 11, 2019 in Selenium by Irfaan
12,967 views

1 answer to this question.

0 votes

Hey Irfaan, JUnit is an open source unit testing tool and used to test small/large units of code. To run the JUnit test you don’t have to create a class object or define the main method. Junit provides assertion library which is used to evaluate the test result. Annotations of JUnit are used to run the test method. JUnit is also used to run the Automation suite having multiple test cases. 

It is used by developers to implement unit testing in Java, and accelerate programming speed and increase the quality of code. JUnit test framework provides the following important features:

  • Fixtures: Fixed state of a set of objects used as a baseline for running tests. The purpose of a test fixture is to ensure that there is a well-known and fixed environment in which tests are run so that results are repeatable.
  • Test suites: Bundles a few unit test cases and runs them together. Both @RunWith and @Suite annotation are used to run the suite test. 
  • Test runners: Test runner is used for executing the test cases.
  • JUnit classes: JUnit classes are important classes, used in writing and testing JUnits. Some of the important classes are Assert, TestCase, TestResult.
    answered Jun 12, 2019 by Anvi
    • 14,150 points

    Related Questions In Selenium

    0 votes
    1 answer

    What is Xpath and what are the types of it in Selenium Webdriver?

    Xpath is one of the most important ...READ MORE

    answered May 23, 2022 in Selenium by anonymous

    edited Mar 5 5,925 views
    0 votes
    1 answer

    What is a Selenium framework and what are the benefits of it?

    Hi Disha, Selenium framework is a code structure ...READ MORE

    answered May 13, 2019 in Selenium by Abha
    • 28,140 points
    1,571 views
    0 votes
    1 answer

    What are locators in Selenium and what are the different types of it?

    Hi Divya, in Selenium Locators define an ...READ MORE

    answered May 7, 2019 in Selenium by Abha
    • 28,140 points
    3,157 views