Multiple choice technology testing

Name of the each method inside test class must end with "test".

  1. True

  2. False

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

In JUnit 3, methods must start with 'test' to be recognized, but JUnit 4+ uses annotations like @Test and allows any method name. The statement is false because method naming conventions vary by framework version.