@Test
public void testThreadCounter() throws Exception {
MethodCallStatistic stat = new MethodCallStatistic("A");
stat.markEnter();
assertEquals(1L, stat.getMaxThreads());
assertEquals(1L, stat.getCurThreads());
stat.markExit();
assertEquals(1L, stat.getMaxThreads());