*
*/
public class ClassMethodInspectorTest extends TestCase {
public void testSimpleMethods() throws Exception {
final ClassMethodInspector ext = new ClassMethodInspector( SimpleMethods.class, new Converter() );
for ( String s : ext.getMethodNames() ) {
assertFalse( "Method " + s + " is not allowed.",
allowedMethod( s ) );
}
}