blob: 8f459c499b320ef8a4eef6a4af63b4e17d5786ca [file] [log] [blame]
package com.example.foo.client;
import com.google.gwt.junit.client.GWTTestCase;
public class FooTest extends GWTTestCase {
/*
* Specifies a module to use when running this test case. The returned
* module must cause the source for this class to be included.
*
* @see com.google.gwt.junit.client.GWTTestCase#getModuleName()
*/
public String getModuleName() {
return "com.example.foo.Foo";
}
public void testStuff() {
assertTrue(2 + 2 == 4);
}
}