ActionSignature sig = db.getActionMethodSignature(TestChildClass.class, "test");
assertEquals( "testAction", sig.methodName() );
ActionSignature defaultActionMethod = db.getDefaultActionMethodFor(TestChildClass.class);
assertNotNull( defaultActionMethod );
assertEquals( "defaultAction", defaultActionMethod.methodName( ) );
ActionSignature beforeActionMethod = db.getBeforeActionMethodFor(TestChildClass.class);
assertNotNull( beforeActionMethod );
assertEquals( "doSomethingBefore", beforeActionMethod.methodName( ) );
}