Skip to content

Commit 0638b9d

Browse files
committed
Revert "Added StringUtilTest and includeObject test"
This reverts commit 694afd2.
1 parent 694afd2 commit 0638b9d

File tree

3 files changed

+3
-104
lines changed

3 files changed

+3
-104
lines changed

src/test/java/org/utplsql/maven/plugin/UtPlsqlMojoTest.java

Lines changed: 3 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -306,11 +306,11 @@ public void db_config_using_system_properties() throws Exception {
306306
}
307307

308308
/**
309-
* Exclude object from coverage report
309+
* DB configuration from System Properties
310310
* <p>
311-
* Given : a pom.xml with excludeObject set
311+
* Given : a pom.xml without dbUrl, dbUser and dbPass configured
312312
* When : pom is read
313-
* Then : excludeObject is present
313+
* Then : System Properties must be used to configure database
314314
*/
315315
@Test
316316
public void exclude_object() throws Exception {
@@ -322,23 +322,6 @@ public void exclude_object() throws Exception {
322322
assertEquals("app.pkg_test_me,app.test_pkg_test_me", utPlsqlMojo.excludeObject);
323323
}
324324

325-
/**
326-
* Include object from coverage report
327-
* <p>
328-
* Given : a pom.xml with includeObject set
329-
* When : pom is read
330-
* Then : includeObject is present
331-
*/
332-
@Test
333-
public void include_object() throws Exception {
334-
UtPlsqlMojo utPlsqlMojo = createUtPlsqlMojo("include_object");
335-
assertNotNull(utPlsqlMojo);
336-
337-
utPlsqlMojo.execute();
338-
339-
assertEquals("app.pkg_test_me,app.test_pkg_test_me", utPlsqlMojo.includeObject);
340-
}
341-
342325
private UtPlsqlMojo createUtPlsqlMojo(String directory) throws Exception {
343326
return (UtPlsqlMojo) rule.lookupConfiguredMojo(new File("src/test/resources/unit-tests/" + directory), "test");
344327
}

src/test/java/org/utplsql/maven/plugin/util/StringUtilTest.java

Lines changed: 0 additions & 32 deletions
This file was deleted.

src/test/resources/unit-tests/include_object/pom.xml

Lines changed: 0 additions & 52 deletions
This file was deleted.

0 commit comments

Comments
 (0)