Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save LenarBad/22553672df17bd4aa61e057689c1a6df to your computer and use it in GitHub Desktop.
Save LenarBad/22553672df17bd4aa61e057689c1a6df to your computer and use it in GitHub Desktop.
package io.lenar.examples.spring.start;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class TestNGWithSpringApplication {
public static void main(String[] args) {
SpringApplication.run(TestNGWithSpringApplication.class, args);
}
}
@LenarBad
Copy link
Author

LenarBad commented Dec 4, 2017

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment