import static org.junit.Assert.*;
import org.junit.Test;
public class BookTest {
@Test
public void testBorrow() {
fail("Not yet implemented");
}
@Test
public void testInlibrary() {
fail("Not yet implemented");
}
@Test
public void testBookReturn() {
fail("Not yet implemented");
}
}
이렇게 뜨거든
assertTrue를 사용하려는데 없다고 뜨네 가르쳐줘 초보야
import org.junit.Test;
public class BookTest {
@Test
public void testBorrow() {
fail("Not yet implemented");
}
@Test
public void testInlibrary() {
fail("Not yet implemented");
}
@Test
public void testBookReturn() {
fail("Not yet implemented");
}
}
이렇게 뜨거든
assertTrue를 사용하려는데 없다고 뜨네 가르쳐줘 초보야
댓글 0