import org.junit.Test; import static org.junit.Assert.*; public class JUnitDemoTest { @Test public void getName() { JUnitDemo demo = new JUnitDemo("İhsan"); assertEquals("İhsan", demo.getName()); } }