0
0
JUnittesting~20 mins

@EnabledOnOs for OS-specific tests in JUnit - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
OS-Specific Testing Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
Predict Output
intermediate
2:00remaining
What is the test execution result of this JUnit 5 code snippet?
Consider the following JUnit 5 test method annotated with @EnabledOnOs for Windows OS. What will be the test execution result if run on a Linux machine?
JUnit
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.condition.EnabledOnOs;
import org.junit.jupiter.api.condition.OS;

public class OSTest {
    @Test
    @EnabledOnOs(OS.WINDOWS)
    void testOnlyOnWindows() {
        System.out.println("Running Windows-specific test");
    }
}
ATest runs and prints "Running Windows-specific test" on Linux.
BTest fails with an exception on Linux.
CTest is skipped and not executed on Linux.
DTest runs but is ignored on Linux.
Attempts:
2 left
💡 Hint
Think about what @EnabledOnOs does when the OS does not match.
assertion
intermediate
1:30remaining
Which assertion correctly verifies the OS name in a JUnit 5 test?
You want to write a test that asserts the current OS is Linux before running OS-specific logic. Which assertion is correct?
JUnit
String osName = System.getProperty("os.name").toLowerCase();
AassertTrue(osName.contains("linux"));
BassertEquals(osName, "Linux");
CassertFalse(osName.equalsIgnoreCase("linux"));
DassertNull(osName);
Attempts:
2 left
💡 Hint
OS name strings can vary in case and format.
🔧 Debug
advanced
2:30remaining
Why does this @EnabledOnOs test run on all OS instead of only Mac?
Examine the code below. The test is intended to run only on Mac OS but runs on Windows and Linux too. Identify the cause.
JUnit
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.condition.EnabledOnOs;
import org.junit.jupiter.api.condition.OS;

public class MacTest {
    @Test
    @EnabledOnOs(os = OS.MAC)
    void testMacOnly() {
        System.out.println("Running Mac test");
    }
}
AThe annotation @EnabledOnOs requires a string parameter, not enum.
BThe OS enum MAC is deprecated and ignored.
CThe test method must be static to run conditionally.
DThe attribute name should be 'value' not 'os' in @EnabledOnOs.
Attempts:
2 left
💡 Hint
Check the correct attribute name for @EnabledOnOs annotation.
framework
advanced
2:00remaining
How to run a test only on Windows and Linux using @EnabledOnOs?
You want a JUnit 5 test to run only on Windows and Linux OS. Which annotation usage is correct?
A@EnabledOnOs(OS.WINDOWS || OS.LINUX)
B@EnabledOnOs({OS.WINDOWS, OS.LINUX})
C@EnabledOnOs(OS.WINDOWS && OS.LINUX)
D@EnabledOnOs(OS.WINDOWS, OS.LINUX)
Attempts:
2 left
💡 Hint
Check how to specify multiple OS values in the annotation array.
🧠 Conceptual
expert
3:00remaining
What happens if @EnabledOnOs is used on a test class with multiple test methods?
If a JUnit 5 test class is annotated with @EnabledOnOs(OS.MAC) and contains multiple test methods, what is the behavior when running on Windows?
AAll test methods in the class are skipped on Windows.
BOnly test methods individually annotated with @EnabledOnOs run on Windows.
CThe test class runs but all test methods fail on Windows.
DThe test class runs and all test methods run regardless of OS.
Attempts:
2 left
💡 Hint
Class-level annotations affect all contained tests.