checkstyle correction

This commit is contained in:
Jeremy Long
2016-10-23 07:02:36 -04:00
parent 824aa23b9b
commit e751b7b814
3 changed files with 32 additions and 13 deletions

View File

@@ -67,15 +67,15 @@ public class DependencyBundlingAnalyzerTest extends BaseTest {
DependencyBundlingAnalyzer instance = new DependencyBundlingAnalyzer();
// the actual dependency does not matter
assertFalse(instance.analyzed);
assertFalse(instance.getAnalyzed());
instance.analyze(null, engineMock);
// the second runs basically does nothing
assertTrue(instance.analyzed);
assertTrue(instance.getAnalyzed());
instance.analyze(null, engineMock);
instance.analyze(null, engineMock);
instance.analyze(null, engineMock);
assertTrue(instance.analyzed);
assertTrue(instance.getAnalyzed());
new Verifications() {{
engineMock.getDependencies();