Java Basic
-  Which method is used to verify the actual and expected results in Junits?
- 
                        View Hint View Answer Discuss in Forum NA Correct Option: Cassert method is used to compare actual and expected results in Junit. It has various implementation like assertEquals, assertArrayEquals, assertFalse, assertNotNull, etc. 
-  Which of these is not a mocking framework?
- 
                        View Hint View Answer Discuss in Forum NA Correct Option: AEasyMock, jMock, Mockito, Unitils Mock, PowerMock and JMockit are a various mocking framework. 
-  Which of the below is an incorrect annotation with respect to JUnits?
- 
                        View Hint View Answer Discuss in Forum NA Correct Option: D@Test is used to annotate method under test, @BeforeEach and @AfterEach are called before and after each method respectively. @BeforeClass and @AfterClass are called only once for each class. 
-  Which of the below statement about JUnit is false?
- 
                        View Hint View Answer Discuss in Forum NA Correct Option: CJUnits test can be run automatically and they check their own results and provide immediate feedback. 
-  JUnits are used for which type of testing?
- 
                        View Hint View Answer Discuss in Forum NA Correct Option: BJUnit is a testing framework for unit testing. It uses java as a programming platform. It is managed by junit.org community. 
 
	