0

I'm using Junit toolbox to run my unit and integration tests. It's working fine. Now, I have created another layer of tests that I would also like to run with junit toolbox but with a different suffix, not *IT or *Test.

@RunWith(WildcardPatternSuite.class)
@SuiteClasses("**/*BCT.class")
public class AllBCTTests {

}

But these tests are not running in my Maven build. What do I have to do to get these tests with a different suffix to run?

Stefan Birkner
  • 24,059
  • 12
  • 57
  • 72
user840930
  • 5,214
  • 21
  • 65
  • 94

1 Answers1

0

The above piece of code works. Different suffixes can be used with WildcardPatternSuite.

user840930
  • 5,214
  • 21
  • 65
  • 94