Is it possible to disable one of the valueSource in a parameterizedTest?

180 views Asked by At

I am using JUnit 5 and I have a test case like this:

@ParameterizedTest
@ValueSource(Strings = {a , b , c})
void example(String letter){
// do something
}

the c case is unhandled for now, so is it possible to use @Disabled to ignore only the c case not the whole test suite? Or maybe suggest another way to take c case out of my smoke tests.

1

There are 1 answers

0
Arun Kumar T On

I think we can't disable a particular value in ParameterizedTest simply remove the value and run