JdbcSqlStat stat = new JdbcSqlStat("SELECT * FROM t_user");
Assert.assertEquals(null, stat.getExecuteLastStartTime());
Assert.assertEquals(null, stat.getExecuteNanoSpanMaxOccurTime());
Assert.assertEquals(null, stat.getExecuteErrorLastTime());
stat.error(new Exception());
Assert.assertNotNull(stat.getExecuteErrorLast());
Assert.assertNotNull(stat.getExecuteErrorLastTime());
}
}