Simple test
package sscore.integration;
import org.junit.Test;
import static org.hamcrest.Matchers.is;
import static org.junit.Assert.assertThat;
/**
* @author Roma
*/
public final class SimpleTest {
@Test
public void shouldReturnTrue() throws Exception {
assertThat(1L, is(1L));
}
}