Added licence, copyright and README
This commit is contained in:
parent
da53dbf3d6
commit
29f1273b59
11 changed files with 284 additions and 11 deletions
|
@ -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);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue