Skip to content

Commit

Permalink
#61 - Added application test [skip travis]
Browse files Browse the repository at this point in the history
  • Loading branch information
starnowski committed Feb 16, 2020
1 parent c958738 commit 57ab86a
Showing 1 changed file with 16 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
package com.github.starnowski.bmunit.extension.junit5.spring.demo;

import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.extension.ExtendWith;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit.jupiter.SpringExtension;

@ExtendWith(SpringExtension.class)
//@SpringBootTest(webEnvironment=SpringBootTest.WebEnvironment.RANDOM_PORT, classes = DemoApplication.class)
@SpringBootTest(webEnvironment=SpringBootTest.WebEnvironment.RANDOM_PORT)
public class DemoApplicationTest {

@Test
public void runApplication()
{}
}

0 comments on commit 57ab86a

Please sign in to comment.