package blade.migrate.liferay70; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertNotNull; import static org.junit.Assert.assertTrue; import blade.migrate.api.Problem; import java.io.File; import java.util.List; import org.junit.Before; import org.junit.Test; public class BreadcrumbPropertiesTest { final File file = new File( "projects/knowledge-base-portlet-6.2.x/docroot/WEB-INF/src/portal.properties"); BreadcrumbProperties component; @Before public void beforeTest() { assertTrue(file.exists()); component = new BreadcrumbProperties(); component.addPropertiesToSearch(component._properties); } @Test public void breadcrumbPropertiesAnalyzeTest() throws Exception { List<Problem> problems = component.analyze(file); assertNotNull(problems); assertEquals(2, problems.size()); } @Test public void breadcrumbPropertiesAnalyzeTest2() throws Exception { List<Problem> problems = component.analyze(file); problems = component.analyze(file); assertNotNull(problems); assertEquals(2, problems.size()); } }