assertSame(found, overloadedDifferentMethod);
}
@Test
public void shouldGetLastStackTrace() throws Exception {
Location last = finder.getLastLocation(invocations);
assertSame(differentMethodInvocation.getLocation(), last);
assertNull(finder.getLastLocation(Collections.<Invocation>emptyList()));
}