

InterviewSolution
Saved Bookmarks
This section includes InterviewSolutions, each offering curated multiple-choice questions to sharpen your knowledge and support exam preparation. Choose a topic below to get started.
1. |
What is the use of supporting classes in XMLUnit? |
Answer» | |
2. |
What is XMLUnit? |
Answer» | |
3. |
What are the advantages of using JWebUnit? |
Answer» | |
4. |
What is JWebUnit? |
Answer» | |
5. |
What are the core components of Cactus? |
Answer» | |
6. |
What is Cactus? |
Answer» | |
7. |
Name some of the JUnit Extensions. |
Answer» | |
8. |
Explain unit testing using Mock Objects. |
Answer» | |
9. |
What is a Mock Object? |
Answer» | |
10. |
When are tests garbage collected? |
Answer» | |
11. |
Do you need to write a test class for every class that needs to be tested? |
Answer» | |
12. |
Can you use a main() Method for Unit Testing? |
Answer» | |
13. |
What happens if a JUnit test method is declared to return "String"? |
Answer» | |
14. |
How do you test a "private" method? |
Answer» | |
15. |
How do you test a "protected" method? |
Answer» | |
16. |
What happens if a JUnit Test Method is Declared as "private"? |
Answer» | |
17. |
How to compile a JUnit Test Class? |
Answer» | |
18. |
How do you use test fixtures? |
Answer» | |
19. |
How to create Parameterized tests? |
Answer» | |
20. |
What are Parameterized tests? |
Answer» | |
21. |
How can you use JUnit to test that the code throws desired exception? |
Answer» | |
22. |
How to simulate timeout situation in JUnit? |
Answer» | |
23. |
What is the purpose of org.junit.JUnitCore class? |
Answer» | |
24. |
Explain the execution procedure of the JUnit test API methods? |
Answer» | |
25. |
What is @Ignore annotation and how is this useful? |
Answer» | |
26. |
What is the purpose of @AfterClass annotation in JUnit? |
Answer» | |
27. |
What is the purpose of @BeforeClass annotation in JUnit? |
Answer» | |
28. |
What is the purpose of @After annotation in JUnit? |
Answer» | |
29. |
What is the purpose of @Before annotation in JUnit? |
Answer» | |
30. |
What is the purpose of @Test annotation in JUnit? |
Answer» | |
31. |
What is the purpose of org.junit.TestSuite class? |
Answer» | |
32. |
What is the purpose of org.junit.TestResult class? |
Answer» | |
33. |
What is the purpose of org.junit.Assert class? |
Answer» | |
34. |
How will you run JUnit from command window? |
Answer» | |
35. |
What are annotations and how are they useful in JUnit? |
Answer» | |
36. |
What are JUnit classes? List some of them. |
Answer» | |
37. |
What is a test runner? |
Answer» | |
38. |
What is a test suite? |
Answer» | |
39. |
What is a fixture? |
Answer» | |
40. |
What are the core features of JUnit? |
Answer» | |
41. |
Name the tools with which JUnit can be easily integrated. |
Answer» | |
42. |
How do I test things that must be run in a J2EE container (e.g. servlets, EJBs)? |
Answer» | |
43. |
In Java, assert is a keyword. Won't this conflict with JUnit's assert() method? |
Answer» | |
44. |
Why does JUnit only report the first failure in a single test? |
Answer» | |
45. |
How to install JUnit? |
Answer» | |
46. |
Why not just use System.out.println() for testing? |
Answer» | |
47. |
When are Unit Tests written in Development Cycle? |
Answer» | |
48. |
What are the best practices to write a Unit Test Case? |
Answer» | |
49. |
What is a Unit Test Case? |
Answer» | |
50. |
What are important features of JUnit? |
Answer» | |