Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
1.0-beta-4
-
None
-
Sun JDK 1.4.2
Description
groovyc will successfully compile a class that doesn't implement all of it's abstract inherited methods. For example
public interface Iface {
String getName();
}
class Impl implements Iface {
}
These will both compile fine, but then this test case will fail throwing a groovy.lang.MissingMethodException
class ImplTest extends GroovyTestCase {
void testBasic()
}