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.
1 parent ca61aea commit 2e34174Copy full SHA for 2e34174
src/test/java/com/checkmarx/ast/ScanTest.java
@@ -72,6 +72,13 @@ void testScanCreate() throws Exception {
72
Assertions.assertEquals("Completed", wrapper.scanShow(UUID.fromString(scan.getId())).getStatus());
73
}
74
75
+ @Test
76
+ void testScanCreateWithAsyncAndDebugFlag_ShouldParseScanResponseSuccessfully() throws Exception {
77
+ Map<String, String> params = commonParams();
78
+ Scan scan = wrapper.scanCreate(params, "--debug --async");
79
+ Assertions.assertNotNull(scan);
80
+ }
81
+
82
@Test
83
void testScanCancel() throws Exception {
84
Map<String, String> params = commonParams();
0 commit comments