What is JUnit?
JUnit is a testing framework to write repeatable tests for java programming language.
What is TDD?
Test Driven Development. Unit Test fail fix
What are the annotations in JUnit? Order of execution?
JUNIT ANNOTATIONS is a special form of syntactic meta-data that can be added to Java source code for better code readability and structure.
@BeforeClass Executed before the first @Test method in JUnit test class
@Before Executed before all the @Test methods
@Test Executed for all @Test methods
@After Executed after all @Test methods
How would you prevent a test from being run without commenting it out?
@Ignore annotation along with the @Test annotation.