updated to support the new Settings implementation

Former-commit-id: dd2d8cdd1c8688482752a8f1df2fc54ef6f638c8
This commit is contained in:
Jeremy Long
2014-04-16 07:57:11 -04:00
parent 691636de7b
commit e28b6b9f73

View File

@@ -18,40 +18,18 @@
package org.owasp.dependencycheck.utils; package org.owasp.dependencycheck.utils;
import java.io.File; import java.io.File;
import org.junit.After;
import org.junit.AfterClass;
import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse; import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertTrue; import static org.junit.Assert.assertTrue;
import static org.junit.Assert.fail; import static org.junit.Assert.fail;
import org.junit.Before;
import org.junit.BeforeClass;
import org.junit.Test; import org.junit.Test;
import org.owasp.dependencycheck.BaseTest;
/** /**
* *
* @author Jeremy Long <jeremy.long@owasp.org> * @author Jeremy Long <jeremy.long@owasp.org>
*/ */
public class FileUtilsTest { public class FileUtilsTest extends BaseTest {
public FileUtilsTest() {
}
@BeforeClass
public static void setUpClass() throws Exception {
}
@AfterClass
public static void tearDownClass() throws Exception {
}
@Before
public void setUp() {
}
@After
public void tearDown() {
}
/** /**
* Test of getFileExtension method, of class FileUtils. * Test of getFileExtension method, of class FileUtils.