51Testing软件测试论坛

 找回密码
 (注-册)加入51Testing

QQ登录

只需一步,快速开始

微信登录,快人一步

手机号码,快捷登录

查看: 3421|回复: 1
打印 上一主题 下一主题

[求助] 谁能告诉怎么单独使用Junit阿?我不想用集成在eclipse里边的

[复制链接]

该用户从未签到

跳转到指定楼层
1#
发表于 2007-1-16 18:22:19 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
我不想用集成在eclipse里边的,想用junit的swingui界面,可是弄了很久都不行,在eclipse里边就可以,在swingui界面下就提示错误,为什么啊?
放在其他文件夹下就提示class not found ,难道每次都要设置环境变量才行?
后来放到junit\samples文件夹下,就提示D:\junit3.8.1\junit\samples>java -cp ..\..\junit.jar SimpleTest
我的程序是
package junit.samples;
import java.util.*;
import junit.framework.*;

public class SimpleTest extends TestCase {

    public SimpleTest(String name) {
        super(name);
    }
public void testEmptyCollection() {
        Collection collection = new ArrayList();
        assertTrue(collection.isEmpty());
    }
public static Test suite() {
        return new TestSuite(SimpleTest.class);
    }
public static void main(String args[]) {
        junit.textui.TestRunner.run(suite());
    }
}
当然,代码是我copy的,想试试能不能运行
命令是D:\junit3.8.1\junit\samples>java -cp ..\..\junit.jar SimpleTest

哪位大虾能告诉我为什么吗?
小女子万分感谢!!!!
弄了好久了都弄不出来:-(
分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
收藏收藏
回复

使用道具 举报

该用户从未签到

2#
发表于 2007-11-14 15:55:56 | 只看该作者
我是集成在eclipse里面用的,感觉得错,没有单独用过,我也不知道!
回复 支持 反对

使用道具 举报

本版积分规则

关闭

站长推荐上一条 /1 下一条

小黑屋|手机版|Archiver|51Testing软件测试网 ( 沪ICP备05003035号 关于我们

GMT+8, 2024-11-8 14:02 , Processed in 0.073992 second(s), 28 queries .

Powered by Discuz! X3.2

© 2001-2024 Comsenz Inc.

快速回复 返回顶部 返回列表