* Unit test to test the behavior of the RepositoryPerformanceMonitor aspect in isolation.
*/
public class RepositoryPerformanceMonitorTest extends TestCase {
public void testMonitor() throws Throwable {
JamonMonitorFactory monitorFactory = new JamonMonitorFactory();
RepositoryPerformanceMonitor performanceMonitor = new RepositoryPerformanceMonitor(monitorFactory);
Signature signature = EasyMock.createMock(Signature.class);
ProceedingJoinPoint targetMethod = EasyMock.createMock(ProceedingJoinPoint.class);
EasyMock.expect(targetMethod.getSignature()).andReturn(signature);