minor testing work
This commit is contained in:
parent
d0a08ef594
commit
afb7814656
|
@ -0,0 +1,20 @@
|
|||
package org.baeldung.ex.beancreationexception;
|
||||
|
||||
import org.junit.runner.RunWith;
|
||||
import org.junit.runners.Suite;
|
||||
|
||||
@RunWith(Suite.class)
|
||||
@Suite.SuiteClasses({// @formatter:off
|
||||
Cause1BeanCreationExceptionIntegrationTest.class
|
||||
,Cause2BeanCreationExceptionIntegrationTest.class
|
||||
,Cause3BeanCreationExceptionIntegrationTest.class
|
||||
,Cause4BeanCreationExceptionIntegrationTest.class
|
||||
,Cause5BeanCreationExceptionIntegrationTest.class
|
||||
,Cause6BeanCreationExceptionIntegrationTest.class
|
||||
,Cause7BeanCreationExceptionIntegrationTest.class
|
||||
,Cause8BeanCreationExceptionIntegrationTest.class
|
||||
,Cause9BeanCreationExceptionIntegrationTest.class
|
||||
}) // @formatter:on
|
||||
public class BeanCreationExceptionTestSuite {
|
||||
//
|
||||
}
|
Loading…
Reference in New Issue