How to skip the test classes in OSGI integration test?

16 Views Asked by At

In the junit we can use the Assume.assumeTrue(false) to skip the execution of the test cases.

@BeforeClass public static void beforeClass() { Assume.assumeTrue(booleanCondition()); }

But in OSGI integration i am not able to use the assumeTrue. So how can i skip the test class execution based on the condition in osgi integration tests.

0

There are 0 best solutions below