Question about running testng tests without breakpoint #316
-
Hello, I'm able to successfully call the functions
However, if I try to call the functions inside a Is this the expected behavior? Or is there an option to run the functions inside testng test class/methods without setting breakpoints? Thanks in advance. // TestNGExampleTest.java
// A sample test class
package com.example;
import org.testng.Assert;
import org.testng.annotations.Test;
public class TestNGExampleTest {
@Test
public void testMethodTest() {
int x = 10;
int y = 10;
Assert.assertEquals(x + y, 200);
}
} |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
I think the tests are run and there should be output in the repl or integrated terminal, but the results are not parsed. The result parser is currently only implemented for junit. |
Beta Was this translation helpful? Give feedback.
I think the tests are run and there should be output in the repl or integrated terminal, but the results are not parsed. The result parser is currently only implemented for junit.