* Set up fixture.
*/
protected void setUp() throws Exception {
ProseSystem.startup();
JoinPointManager jpm= ProseSystem.getAspectManager().getJoinPointManager();
Method fooBarMethod = FooBar.class.getDeclaredMethod("fooBar",new Class[]{});
Method niceFooBarMethod = NiceFooBar.class.getDeclaredMethod("niceFooBar",new Class[]{});
Method badFooBarMethod = BadFooBar.class.getDeclaredMethod("badFooBar",new Class[]{});
Method aSimpleMethodBodyMethod = ASimpleMethodBody.class.getDeclaredMethod("aSimpleMethodBody",new Class[]{});
Method aSimpleBodyMethod = ASimpleBody.class.getDeclaredMethod("aSimpleBody",new Class[]{});
Method aSeccondBodyMethod = ASeccondBody.class.getDeclaredMethod("aSeccondBody",new Class[]{});
fooBarRequest = (MethodEntryRequest)jpm.createJoinPointRequest(MethodEntryJoinPoint.KIND,fooBarMethod );
niceFooBarRequest = (MethodEntryRequest)jpm.createJoinPointRequest(MethodEntryJoinPoint.KIND,niceFooBarMethod );
badFooBarRequest = (MethodEntryRequest)jpm.createJoinPointRequest(MethodEntryJoinPoint.KIND,badFooBarMethod );
aSimpleMethodBodyRequest = (MethodEntryRequest)jpm.createJoinPointRequest(MethodEntryJoinPoint.KIND,aSimpleMethodBodyMethod);
aSimpleBodyRequest = (MethodEntryRequest)jpm.createJoinPointRequest(MethodEntryJoinPoint.KIND,aSimpleBodyMethod );
aSeccondBodyRequest = (MethodEntryRequest)jpm.createJoinPointRequest(MethodEntryJoinPoint.KIND,aSeccondBodyMethod );
}