12 lines
180 B
Java
Raw Normal View History

package com.baeldung;
import org.junit.Test;
import static org.junit.Assert.*;
public class SomeUnitTest {
@Test
public void init() {
2017-11-29 05:30:56 +01:00
assertEquals(1, 0);
}
}