updated to support the new Settings implementation

Former-commit-id: 41cb4630f5cd777cc3c24da7e3c6aee18151501a
This commit is contained in:
Jeremy Long
2014-04-16 07:57:11 -04:00
parent b1b8584641
commit d8279e11aa

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.