static enum TestEnum1{ ONE }
public void testEnumerationIsZero() throws Exception {
RegExpWhiteList customWhitelist = new RegExpWhiteList("java.");
MetricComputer toDecorate = new MetricComputerBuilder().withClassRepository(repo)
.withWhitelist(customWhitelist).build();
computer = new MetricComputerJavaDecorator(toDecorate, repo);
ClassCost cost = computer.compute(TestEnum1.class);
assertEquals(0, cost.getMethodCost("<static init>()").getTotalCost().getGlobalCost());
}