Added licence, copyright and README

This commit is contained in:
Erik C. Thauvin 2023-08-14 19:48:07 -07:00
parent da53dbf3d6
commit 29f1273b59
11 changed files with 284 additions and 11 deletions

View file

@ -4,9 +4,8 @@ import org.testng.Assert;
import org.testng.annotations.Test;
class ExampleTest {
@Test
void verifyHello() {
Assert.assertTrue(true);
public static void main(String[] args) {
new ExampleTest().verifyHello();
}
@Test
@ -14,7 +13,8 @@ class ExampleTest {
Assert.fail("failed");
}
public static void main(String[] args) {
new ExampleTest().verifyHello();
@Test
void verifyHello() {
Assert.assertTrue(true);
}
}