junit tests setup

This commit is contained in:
Athou
2013-04-12 15:50:13 +02:00
parent 6e446fe55c
commit 7143b886ee
2 changed files with 19 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
package com.commafeed.backend;
import org.junit.Assert;
import org.junit.Test;
public class SampleTest {
@Test
public void init() {
Assert.assertEquals(2, 2);
}
}