2019-08-12 00:16:26 +05:30
|
|
|
package com.baeldung.test;
|
2014-09-18 17:33:26 +03:00
|
|
|
|
|
|
|
import org.junit.runner.RunWith;
|
|
|
|
import org.junit.runners.Suite;
|
|
|
|
import org.junit.runners.Suite.SuiteClasses;
|
|
|
|
|
2019-08-12 00:16:26 +05:30
|
|
|
import com.baeldung.properties.basic.ExtendedPropertiesWithJavaIntegrationTest;
|
|
|
|
import com.baeldung.properties.basic.PropertiesWithMultipleXmlsIntegrationTest;
|
|
|
|
import com.baeldung.properties.basic.PropertiesWithXmlIntegrationTest;
|
|
|
|
import com.baeldung.properties.external.ExternalPropertiesWithJavaIntegrationTest;
|
|
|
|
import com.baeldung.properties.external.ExternalPropertiesWithMultipleXmlsIntegrationTest;
|
|
|
|
import com.baeldung.properties.external.ExternalPropertiesWithXmlManualTest;
|
|
|
|
|
2014-09-18 17:33:26 +03:00
|
|
|
@RunWith(Suite.class)
|
2015-07-23 17:13:49 +03:00
|
|
|
@SuiteClasses({ //@formatter:off
|
2014-09-18 17:33:26 +03:00
|
|
|
PropertiesWithXmlIntegrationTest.class,
|
|
|
|
ExternalPropertiesWithJavaIntegrationTest.class,
|
|
|
|
ExternalPropertiesWithMultipleXmlsIntegrationTest.class,
|
2017-02-04 21:56:11 +02:00
|
|
|
ExternalPropertiesWithXmlManualTest.class,
|
2015-08-16 11:30:03 +03:00
|
|
|
ExtendedPropertiesWithJavaIntegrationTest.class,
|
2014-09-18 17:33:26 +03:00
|
|
|
PropertiesWithMultipleXmlsIntegrationTest.class,
|
|
|
|
})// @formatter:on
|
|
|
|
public final class IntegrationTestSuite {
|
|
|
|
//
|
|
|
|
}
|