We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 86f7484 + 45b543c commit 85699d4Copy full SHA for 85699d4
src/main/java/org/utplsql/api/TestRunner.java
@@ -64,6 +64,16 @@ public TestRunner excludeObject(String obj) {
64
return this;
65
}
66
67
+ public TestRunner includeObjects(List<String> obj) {
68
+ options.includeObjects.addAll(obj);
69
+ return this;
70
+ }
71
+
72
+ public TestRunner excludeObjects(List<String> obj) {
73
+ options.excludeObjects.addAll(obj);
74
75
76
77
public TestRunner sourceMappingOptions(FileMapperOptions mapperOptions) {
78
options.sourceMappingOptions = mapperOptions;
79
0 commit comments