ProLab-Project_1/src/test/java/JUnitDemoTest.java

12 lines
232 B
Java

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