added play-framework project (#678)
* made changes to java reflection * removed redundant method makeSound in Animal abstract class * added project for play-framework article
This commit is contained in:
committed by
Grzegorz Piwowarek
parent
334e1b3f83
commit
0835118e85
25
play-framework/student-api/test/IntegrationTest.java
Normal file
25
play-framework/student-api/test/IntegrationTest.java
Normal file
@@ -0,0 +1,25 @@
|
||||
import org.junit.*;
|
||||
|
||||
import play.mvc.*;
|
||||
import play.test.*;
|
||||
|
||||
import static play.test.Helpers.*;
|
||||
import static org.junit.Assert.*;
|
||||
|
||||
import static org.fluentlenium.core.filter.FilterConstructor.*;
|
||||
|
||||
public class IntegrationTest {
|
||||
|
||||
/**
|
||||
* add your integration test here
|
||||
* in this example we just check if the welcome page is being shown
|
||||
*/
|
||||
@Test
|
||||
public void test() {
|
||||
running(testServer(3333, fakeApplication(inMemoryDatabase())), HTMLUNIT, browser -> {
|
||||
browser.goTo("http://localhost:3333");
|
||||
assertTrue(browser.pageSource().contains("Your new application is ready."));
|
||||
});
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user