Files
Athou_commafeed/src/test/java/com/commafeed/backend/SampleTest.java

13 lines
183 B
Java
Raw Normal View History

2013-04-12 15:50:13 +02:00
package com.commafeed.backend;
import org.junit.Assert;
import org.junit.Test;
public class SampleTest {
@Test
public void init() {
Assert.assertEquals(2, 2);
}
}