Cleaned up Javadocs

This commit is contained in:
Erik C. Thauvin 2023-11-27 13:10:11 -08:00
parent e32abb231b
commit ef4a259a33
12 changed files with 518 additions and 96 deletions

View file

@ -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));
}