converted long running tests to integration tests

Former-commit-id: b43f6ed56766f5edd28c2224886c6a544944f449
This commit is contained in:
Jeremy Long
2014-04-21 21:46:54 -04:00
parent 89ed18cea3
commit 94561de719
6 changed files with 6 additions and 6 deletions

View File

@@ -32,7 +32,7 @@ import org.owasp.dependencycheck.utils.Settings;
* *
* @author Jeremy Long <jeremy.long@owasp.org> * @author Jeremy Long <jeremy.long@owasp.org>
*/ */
public class ArchiveAnalyzerTest extends AbstractDatabaseTestCase { public class ArchiveAnalyzerIntegrationTest extends AbstractDatabaseTestCase {
/** /**
* Test of getSupportedExtensions method, of class ArchiveAnalyzer. * Test of getSupportedExtensions method, of class ArchiveAnalyzer.

View File

@@ -35,7 +35,7 @@ import org.owasp.dependencycheck.dependency.Identifier;
* *
* @author Jeremy Long <jeremy.long@owasp.org> * @author Jeremy Long <jeremy.long@owasp.org>
*/ */
public class CPEAnalyzerTest extends AbstractDatabaseTestCase { public class CPEAnalyzerIntegrationTest extends AbstractDatabaseTestCase {
/** /**
* Tests of buildSearch of class CPEAnalyzer. * Tests of buildSearch of class CPEAnalyzer.

View File

@@ -31,7 +31,7 @@ import org.owasp.dependencycheck.utils.Settings;
* *
* @author Jeremy Long <jeremy.long@owasp.org> * @author Jeremy Long <jeremy.long@owasp.org>
*/ */
public class VulnerabilitySuppressionAnalyzerTest extends AbstractDatabaseTestCase { public class VulnerabilitySuppressionAnalyzerIntegrationTest extends AbstractDatabaseTestCase {
/** /**
* Test of getName method, of class VulnerabilitySuppressionAnalyzer. * Test of getName method, of class VulnerabilitySuppressionAnalyzer.

View File

@@ -27,7 +27,7 @@ import org.owasp.dependencycheck.dependency.VulnerableSoftware;
* *
* @author Jeremy Long <jeremy.long@owasp.org> * @author Jeremy Long <jeremy.long@owasp.org>
*/ */
public class CveDBTest extends BaseDBTestCase { public class CveDBIntegrationTest extends BaseDBTestCase {
/** /**
* Pretty useless tests of open, commit, and close methods, of class CveDB. * Pretty useless tests of open, commit, and close methods, of class CveDB.

View File

@@ -27,7 +27,7 @@ import org.owasp.dependencycheck.data.update.NvdCveInfo;
* *
* @author Jeremy Long <jeremy.long@owasp.org> * @author Jeremy Long <jeremy.long@owasp.org>
*/ */
public class DatabasePropertiesTest extends BaseDBTestCase { public class DatabasePropertiesIntegrationTest extends BaseDBTestCase {
/** /**
* Test of isEmpty method, of class DatabaseProperties. * Test of isEmpty method, of class DatabaseProperties.

View File

@@ -36,7 +36,7 @@ import org.owasp.dependencycheck.utils.Settings;
* *
* @author Jeremy Long <jeremy.long@owasp.org> * @author Jeremy Long <jeremy.long@owasp.org>
*/ */
public class ReportGeneratorTest extends BaseTest { public class ReportGeneratorIntegrationTest extends BaseTest {
@Before @Before
public void setUp() throws Exception { public void setUp() throws Exception {