importorg.junit.*;importplay.mvc.*;importplay.test.*;importplay.libs.F.*;importstaticplay.test.Helpers.*;importstaticorg.fest.assertions.Assertions.*;importstaticorg.fluentlenium.core.filter.FilterConstructor.*;publicclassIntegrationTest{/** * add your integration test here * in this example we just check if the welcome page is being shown */@Testpublicvoidtest(){running(testServer(3333,fakeApplication(inMemoryDatabase())),HTMLUNIT,newCallback<TestBrowser>(){publicvoidinvoke(TestBrowserbrowser){browser.goTo("http://localhost:3333");assertThat(browser.pageSource()).contains("Your new application is ready.");}});}}