class MyTest extends GroovyTestCase {
public void testNoop() {
// sanity test
}
public void testBoolean() {
assertEquals(true, someMethod())
assertEquals(false, obj.property)
}
public void testAsserts() {
assert true == method()
}
}