ECLIPSE初学手记(2)
发表于:2007-07-01来源:作者:点击数:
标签:
4.Junit的使用 首先我们给Hello类添加一个abs()方法,作用是返回绝对值 public int abs(int n){ return n0?n:(-n); } 选中HelloWorld. java ,右键点击,选择New-J Unit Test Case: Eclipse在询问是否添加 junit .jar包之后,确定后新建一个HelloworldTest
4.Junit的使用
首先我们给Hello类添加一个abs()方法,作用是返回绝对值
public int abs(int n){
return n>0?n:(-n);
}
选中HelloWorld.
java,右键点击,选择New->J
Unit Test Case:
Eclipse在询问是否添加
junit.jar包之后,确定后新建一个HelloworldTest类,用来
测试Helloworld类。
选中setUp()和tearDown(),然后点击“Next”:
选择要测试的方法,在前面打勾.
再在HelloWorldtest中添加测试代码:
点击Run as Junit,左侧导航栏切换到Junit.如果测试通过,将为绿色显示.
5.添加
tomcat应用程序
按照向导完成即可.可以看到在server.xml中增加了如下内容:
<Context path="/testApp" reloadable="true" docBase="D:\eclipse\workspace\testApp" workDir="D:\eclipse\workspace\testApp\work\org\apache\jsp" />
如果右击src添加包和类的话,保存后会自动添加到classes中.
右击testApp新建文件index.jsp,添加如下内容:
<%@ page contentType="text/html;charset=GBK"%>
<html>
<head>
<title>
Helloworld
</title>
</head>
<body>
Helloworld!
</body>
</html>
然后启动tomcat,在浏览器中输入http://127.0.0.1:8080/testApp/index.jsp,即可看到index的内容了.
原文转自:http://www.ltesting.net