Nextjava
next測試
nextxml
新建項目後,MyEclipse會自動從遠程倉庫中下載支持包,須要幾分鐘左右時間。blog
public class HelloWorld {ip
public String say(){it
return "Hello World";class
}test
public static void main(String []args){import
System.out.println(new HelloWorld().say());cli
}
import static org.junit.Assert.*;
public class HelloWorldTest {
public void testSay(){
HelloWorld helloWorld = new HelloWorld();
String result = helloWorld.say();
assertEquals("Hello World",result);
}
通常不會有什麼問題,若是有問題通常是jdk的版本問題,可是我這裏也沒出什麼錯誤,看到別人網上說的3.1版本以上的Maven須要用1.7版本及以上的jdk,必定要是jdk,不能是jre.
指定jdk
測試:右鍵pom.xml,
結果:
其餘的clean,install,能夠本身嘗試,都是同樣的用。