2017-11-30 05:52:28 +01:00

12 lines
180 B
Java

package com.baeldung;
import org.junit.Test;
import static org.junit.Assert.*;
public class SomeUnitTest {
@Test
public void init() {
assertEquals(1, 1);
}
}