Skip to content

Commit 9a62c0c

Browse files
author
Samuel Nitsche
committed
Merge remote-tracking branch 'upstream/develop' into feature/bump_develop_version
2 parents 5fcfe80 + 85699d4 commit 9a62c0c

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

src/main/java/org/utplsql/api/TestRunner.java

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,16 @@ public TestRunner excludeObject(String obj) {
6464
return this;
6565
}
6666

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+
return this;
75+
}
76+
6777
public TestRunner sourceMappingOptions(FileMapperOptions mapperOptions) {
6878
options.sourceMappingOptions = mapperOptions;
6979
return this;

0 commit comments

Comments
 (0)