Added helper class so clients can use less boilerplate.

This commit is contained in:
akwizgran
2016-02-29 14:03:29 +00:00
parent 9e0add7d4c
commit 2e7df53dba
4 changed files with 347 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
package org.briarproject.clients;
import org.briarproject.BriarTestCase;
import org.junit.Test;
import static org.junit.Assert.fail;
public class ClientHelperImplTest extends BriarTestCase {
@Test
public void testUnitTestsExist() {
fail(); // FIXME: Write tests
}
}