* http://code.google.com/p/testng/issues/detail?id=86
*/
@Test
public void sameMethodInvokedMultipleTimesShouldHaveDifferentTimeStamps() {
TestNG tng = create(Sample.class);
tng.addListener(new InvokedMethodListener());
tng.run();
List<IInvokedMethod> m = InvokedMethodListener.m_methods;
// for (IInvokedMethod mm : m) {
// System.out.println(mm.getTestMethod().getMethodName() + " " + mm.getDate());
// }