updated to support the new Settings implementation

Former-commit-id: 22be859d3d8b9455e203da58ba5146f957a0f28b
This commit is contained in:
Jeremy Long
2014-04-16 07:56:23 -04:00
parent 25fc2bfbea
commit 11e75df1a9

View File

@@ -20,34 +20,15 @@ package org.owasp.dependencycheck.utils;
import java.io.File; import java.io.File;
import java.io.IOException; import java.io.IOException;
import java.net.URISyntaxException; import java.net.URISyntaxException;
import org.junit.After;
import org.junit.AfterClass;
import org.junit.Assert; import org.junit.Assert;
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 SettingsTest { public class SettingsTest extends BaseTest {
@BeforeClass
public static void setUpClass() throws Exception {
}
@AfterClass
public static void tearDownClass() throws Exception {
}
@Before
public void setUp() throws Exception {
}
@After
public void tearDown() throws Exception {
}
/** /**
* Test of getString method, of class Settings. * Test of getString method, of class Settings.