First commit.

This commit is contained in:
Erik C. Thauvin 2016-07-09 19:58:13 -07:00
commit a7a703ccc8
11 changed files with 147 additions and 0 deletions

View file

@ -0,0 +1,9 @@
package com.example;
import org.testng.annotations.Test;
public class ExampleTest {
@Test
public void f() {
System.out.println("Running test");
}
}