forked from Archives/Athou_commafeed
junit tests setup
This commit is contained in:
7
pom.xml
7
pom.xml
@@ -333,6 +333,13 @@
|
|||||||
<artifactId>codemirror</artifactId>
|
<artifactId>codemirror</artifactId>
|
||||||
<version>3.11</version>
|
<version>3.11</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
|
<dependency>
|
||||||
|
<groupId>junit</groupId>
|
||||||
|
<artifactId>junit</artifactId>
|
||||||
|
<version>4.11</version>
|
||||||
|
<scope>test</scope>
|
||||||
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
|
||||||
<profiles>
|
<profiles>
|
||||||
|
|||||||
12
src/test/java/com/commafeed/backend/SampleTest.java
Normal file
12
src/test/java/com/commafeed/backend/SampleTest.java
Normal 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);
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user