romach
4/14/2017 - 5:46 PM

Simple test

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));
    }

}