Cleaned up Javadocs
This commit is contained in:
parent
e32abb231b
commit
ef4a259a33
12 changed files with 518 additions and 96 deletions
|
@ -47,10 +47,10 @@ class TestNgOperationTest {
|
|||
@Test
|
||||
void testClass() {
|
||||
var op = new TestNgOperation().testClass(FOO, BAR);
|
||||
assertThat(op.options.get(TestNgOperation.TEST_CLASS_ARG)).isEqualTo(String.format("%s,%s", FOO, BAR));
|
||||
assertThat(op.options.get("-testclass")).isEqualTo(String.format("%s,%s", FOO, BAR));
|
||||
|
||||
new TestNgOperation().testClass(List.of(FOO, BAR));
|
||||
assertThat(op.options.get(TestNgOperation.TEST_CLASS_ARG)).as("as list")
|
||||
assertThat(op.options.get("-testclass")).as("as list")
|
||||
.isEqualTo(String.format("%s,%s", FOO, BAR));
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue