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 5fcfe80 + 85699d4 commit 9a62c0cCopy full SHA for 9a62c0c
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