return opsList.get(opsList.size() - 1);
}
protected Operation getFirstEntered() {
OperationCollectionAspectSupport aspectInstance = getAspect();
OperationCollector spiedCollector = aspectInstance.getCollector();
assertTrue("Spied collector type mismatch", spiedCollector instanceof TestDummyOperationCollector);
List<Operation> opsList = ((TestDummyOperationCollector) spiedCollector).getCapturedOperations();
assertNotNull("No operations list data", opsList);
assertTrue("No operations collected", opsList.size() > 0);