Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for simpleCheck (0.07 sec)

  1. test-site/test/ApplicationTest.java

    * Simple (JUnit) tests that can call all parts of a play app.
    * If you are interested in mocking a whole application, see the wiki for more details.
    *
    */
    public class ApplicationTest {
    
        @Test
        public void simpleCheck() {
            int a = 1 + 1;
            assertThat(a).isEqualTo(2);
        }
    
        @Test
        public void renderTemplate() {
            Content html = views.html.index.render("Your new application is ready.");
    Registered: Fri Nov 08 09:08:12 UTC 2024
    - Last Modified: Mon Apr 20 08:41:37 UTC 2015
    - 1.1K bytes
    - Viewed (0)
Back to top