update unit test support in build files

This commit is contained in:
Vincent Breitmoser
2014-05-12 22:18:11 +02:00
parent 4a6aaf1e83
commit e7fa124108
5 changed files with 36 additions and 105 deletions

View File

@@ -0,0 +1,12 @@
package tests;
import org.junit.Assert;
import org.junit.Test;
public class SomeTest {
@Test
public void willFail() {
// stub
// Assert.assertThat();
}
}