mirror of
https://github.com/Athou/commafeed.git
synced 2026-03-21 21:37:29 +00:00
junit tests setup
This commit is contained in:
7
pom.xml
7
pom.xml
@@ -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>
|
||||
|
||||
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