}
@Test
public void analysisFolderAndSubFolder() throws Exception {
File src = new File(path);
CodeStatisticsResult statisticsResult = Code.countingCode(src, "ca", true, null);
Assert.assertEquals(4, statisticsResult.getFileCount());
Assert.assertEquals(16, statisticsResult.getImportLines());
Assert.assertEquals(20, statisticsResult.getCommentLines());
Assert.assertEquals(36, statisticsResult.getWhiteLines());
Assert.assertEquals(56, statisticsResult.getNormalLines());
}