14 lines
196 B
Java
14 lines
196 B
Java
package com.baeldung;
|
|
|
|
import org.junit.Test;
|
|
|
|
import com.baeldung.parent.App;
|
|
|
|
public class SpringContextTest {
|
|
|
|
@Test
|
|
public final void testMain() {
|
|
App.main(new String[] {});
|
|
}
|
|
}
|