view test/BasicTest.java @ 3:5a097a2336fa draft

commit
author e085711
date Wed, 26 Sep 2012 14:43:07 +0900
parents e45bf6020b0d
children
line wrap: on
line source

import org.junit.*;
import java.util.*;
import play.test.*;

public class BasicTest extends UnitTest {

    @Test
    public void aVeryImportantThingToTest() {
        assertEquals(2, 1 + 1);
    }

}