minor update to test class

Former-commit-id: c4e38c8f5f3ed154216aad0b023176c74e5fa4a4
This commit is contained in:
Jeremy Long
2013-08-24 19:59:31 -04:00
parent 46d106e6e2
commit 788b5633cb

View File

@@ -19,6 +19,7 @@
package org.owasp.dependencycheck.data.cpe; package org.owasp.dependencycheck.data.cpe;
import org.owasp.dependencycheck.data.cpe.IndexEntry; import org.owasp.dependencycheck.data.cpe.IndexEntry;
import junit.framework.TestCase;
import org.junit.After; import org.junit.After;
import org.junit.AfterClass; import org.junit.AfterClass;
import org.junit.Before; import org.junit.Before;
@@ -30,7 +31,7 @@ import org.junit.Assert;
* *
* @author Jeremy Long (jeremy.long@owasp.org) * @author Jeremy Long (jeremy.long@owasp.org)
*/ */
public class IndexEntryTest { public class IndexEntryTest extends TestCase {
@BeforeClass @BeforeClass
public static void setUpClass() throws Exception { public static void setUpClass() throws Exception {
@@ -41,11 +42,15 @@ public class IndexEntryTest {
} }
@Before @Before
public void setUp() { @Override
public void setUp() throws Exception {
super.setUp();
} }
@After @After
public void tearDown() { @Override
public void tearDown() throws Exception {
super.tearDown();
} }
/** /**