mirror of
https://github.com/Athou/commafeed.git
synced 2026-03-21 21:37:29 +00:00
13 lines
183 B
Java
13 lines
183 B
Java
package com.commafeed.backend;
|
|
|
|
import org.junit.Assert;
|
|
import org.junit.Test;
|
|
|
|
public class SampleTest {
|
|
|
|
@Test
|
|
public void init() {
|
|
Assert.assertEquals(2, 2);
|
|
}
|
|
}
|