Skip to content

Commit 85699d4

Browse files
authored
Merge pull request #40 from JustEdro/develop
Added TestRunner methods to solve utPLSQL/utPLSQL-cli#6 in better way
2 parents 86f7484 + 45b543c commit 85699d4

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)