ApplicationTest.java 402 B

1234567891011121314151617
  1. import org.junit.*;
  2. import play.test.*;
  3. import play.mvc.*;
  4. import play.mvc.Http.*;
  5. import models.*;
  6. public class ApplicationTest extends FunctionalTest {
  7. @Test
  8. public void testThatIndexPageWorks() {
  9. Response response = GET("/");
  10. assertIsOk(response);
  11. assertContentType("text/html", response);
  12. assertCharset(play.Play.defaultWebEncoding, response);
  13. }
  14. }