🎴 Flashcard Mode

Software Testing and Development Process Quiz

Card1 / 20
Mastered0
Review0
QuestionClick to flip

When developing the unit test, which of the following conventions suggested by framework.

AnswerClick to flip back
A
e.) All of the above
💡 Explanation:

JUnit framework conventions require: test class names ending with 'Test', test method names starting with 'test', test methods returning void, and test methods having no parameters. All of these conventions (Options A-D) are standard JUnit practices, making Option E correct. These conventions help test runners identify and execute test methods correctly.

Change Mode