Initial commit

This commit is contained in:
Erik C. Thauvin 2023-08-14 18:20:05 -07:00
commit da53dbf3d6
75 changed files with 2776 additions and 0 deletions

View file

@ -0,0 +1,20 @@
package com.example;
import org.testng.Assert;
import org.testng.annotations.Test;
class ExampleTest {
@Test
void verifyHello() {
Assert.assertTrue(true);
}
@Test
void testFail() {
Assert.fail("failed");
}
public static void main(String[] args) {
new ExampleTest().verifyHello();
}
}