9 lines
201 B
Java
9 lines
201 B
Java
|
package com.baeldung.serverconfig;
|
||
|
|
||
|
import org.springframework.test.context.ActiveProfiles;
|
||
|
|
||
|
@ActiveProfiles("skipAutoConfig")
|
||
|
public class GreetingSkipAutoConfigLiveTest extends GreetingLiveTest {
|
||
|
|
||
|
}
|