Multiple choice technology testing

Junit supports two ways (Static & Dynamic) to run a single unit test. True/False?

  1. True

  2. False

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

JUnit does support both static (using test suites and test runners) and dynamic (using JUnit 4's @Test annotation and JUnit 5's @TestFactory) approaches to run single unit tests. The static approach involves explicit test suite creation, while the dynamic approach uses runtime test discovery and execution through annotations.