Commit 6d977d4 1 parent 7193815 commit 6d977d4 Copy full SHA for 6d977d4
File tree 2 files changed +10
-0
lines changed
karate-core/src/test/java
2 files changed +10
-0
lines changed Original file line number Diff line number Diff line change 1
1
package com .intuit .karate ;
2
2
3
3
import org .junit .jupiter .api .Test ;
4
+ import org .slf4j .LoggerFactory ;
4
5
5
6
/**
6
7
*
7
8
* @author pthomas3
8
9
*/
9
10
class MainRunner {
10
11
12
+ private static final org .slf4j .Logger logger = LoggerFactory .getLogger (MainRunner .class );
13
+
11
14
@ Test
12
15
void testCli () {
13
16
Main .main (new String []{"-S" });
14
17
}
15
18
19
+ @ Test
20
+ void testDebug () {
21
+ String temp = "--threads=1 /Users/peter/dev/zcode/karate-todo/src/test/java/app/api/match/test.feature" ;
22
+ Main main = Main .parseKarateOptionsAndQuotePath (temp );
23
+ }
24
+
16
25
}
Original file line number Diff line number Diff line change 15
15
</appender >
16
16
17
17
<logger name =" com.intuit" level =" DEBUG" />
18
+ <logger name =" com.intuit.karate.debug" level =" TRACE" />
18
19
19
20
<root level =" warn" >
20
21
<appender-ref ref =" STDOUT" />
You can’t perform that action at this time.
0 commit comments