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 PortalPropertiesTest { final File file = new File( "projects/knowledge-base-portlet-6.2.x/docroot/WEB-INF/src/portal.properties"); PortalProperties component; @Before public void beforeTest() { assertTrue(file.exists()); component = new PortalProperties(); component.addPropertiesToSearch(component._properties); } @Test public void portalPropertiesAnalyzeTest() throws Exception { List<Problem> problems = component.analyze(file); assertNotNull(problems); assertEquals(1, problems.size()); Problem problem = problems.get(0); assertEquals(10, problem.lineNumber); } @Test public void portalPropertiesAnalyzeTest2() throws Exception { List<Problem> problems = component.analyze(file); problems = component.analyze(file); assertNotNull(problems); assertEquals(1, problems.size()); } }