package com.Unit;
import net.mindview.atunit.*;
import net.mindview.util.*;
public class AtUnitExample {
public String methodOne(){
return "This is methodOne";
}
public int methodTwo(){
System.out.println("This is methodTwo");
return 2;
}
@Test boolean methodOneTest(){
return methodOne().equals("This is methodOne");
}
@Test boolean m2(){ return methodTwo() == 2;}
@Test boolean m3(){return true;}
@Test boolean failureTest(){return false;}
@Test boolean anotherDisappointment(){return false;}
public static void main(String[] args) {
OSExecute.command("java net.mindview.atunit.AtUnit AtUnitExample");
}
}
听说是因为你没有OSExecute这个类,请看这里:http://www.myexception.cn/j2se/176166.html
我有导包呀,并且我还将command()方法反编译了放在我的类中,但是这个方法没有执行下去。
@小德魁: 那就不知道了,要不你再仔细捋捋,
反编译的包是无法保证运行呢。