Assert.assertEquals(2, provider.getSqlList().size());
Assert.assertFalse(provider.checkValid("slelc"));
{
WallProviderStatValue statValue = provider.getStatValue(true);
Assert.assertNotNull(statValue);
Assert.assertEquals(2, statValue.getTables().size());
Assert.assertEquals(1, statValue.getFunctions().size());
Assert.assertEquals(1009, statValue.getCheckCount());
Assert.assertEquals(2, statValue.getBlackListHitCount());
Assert.assertEquals(4, statValue.getHardCheckCount());
Assert.assertEquals(1, statValue.getSyntaxErrorCount());
Assert.assertEquals(5, statValue.getViolationCount());
Assert.assertEquals(1003, statValue.getWhiteListHitCount());
Assert.assertEquals(1, statValue.getWhiteList().size());
Assert.assertEquals(2, statValue.getBlackList().size());
}
{
WallProviderStatValue statValue = provider.getStatValue(true);
Assert.assertNotNull(statValue);
Assert.assertEquals(0, statValue.getTables().size());
Assert.assertEquals(0, statValue.getFunctions().size());
Assert.assertEquals(0, statValue.getCheckCount());
Assert.assertEquals(0, statValue.getBlackListHitCount());
Assert.assertEquals(0, statValue.getHardCheckCount());
Assert.assertEquals(0, statValue.getSyntaxErrorCount());
Assert.assertEquals(0, statValue.getViolationCount());
Assert.assertEquals(0, statValue.getWhiteListHitCount());
Assert.assertEquals(0, statValue.getWhiteList().size());
Assert.assertEquals(0, statValue.getBlackList().size());
}
}