view test/BasicTest.java @ 2:23c7aea84c46 draft

add libraries
author one
date Tue, 18 Sep 2012 04:51:04 +0900
parents e45bf6020b0d
children 5a097a2336fa
line wrap: on
line source

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

public class BasicTest extends UnitTest {

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

}