最佳答案
我第一次使用 IntelliJIDEA 社区版,并使用 Maven 设置 TDD 环境。下面提供了我试图测试的代码和我在项目结构中遇到的警告消息。
package miscellaneous;
import org.junit.Test;
import static org.junit.Assert.*;
public class TestHello {
// Methods to be tested.....
private int Add1Plus1(int i, int j) {
return (i + j);
}
@Test
public void testAdd1Plus1() throws Exception {
assertEquals(2, Add1Plus1(1, 1));
}
}
Warning:java: source value 1.5 is obsolete and will be removed in a future release
Warning:java: target value 1.5 is obsolete and will be removed in a future release
Warning:java: To suppress warnings about obsolete options, use -Xlint:-options.
是什么导致了这些消息,以及什么是修复这些警告消息的好的/推荐的方法?