20 lines
460 B
Java
20 lines
460 B
Java
package org.baeldung.web;
|
|
|
|
import org.baeldung.client.RestTemplateLiveTest;
|
|
import org.baeldung.persistence.query.JPASpecificationLiveTest;
|
|
import org.junit.runner.RunWith;
|
|
import org.junit.runners.Suite;
|
|
|
|
@RunWith(Suite.class)
|
|
@Suite.SuiteClasses({
|
|
// @formatter:off
|
|
JPASpecificationLiveTest.class
|
|
,FooDiscoverabilityLiveTest.class
|
|
,FooLiveTest.class
|
|
,MyUserLiveTest.class
|
|
,RestTemplateLiveTest.class
|
|
}) //
|
|
public class LiveTestSuite {
|
|
|
|
}
|