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