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

@@ -333,6 +333,13 @@
<artifactId>codemirror</artifactId>
<version>3.11</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
</dependency>
</dependencies>
<profiles>

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);
}
}