0
我可以讓我的junit類從日食中工作。但它不適用於螞蟻。我收到此錯誤消息。Junit給出錯誤
空測試:導致錯誤 com.fourhome.commons.Test_DeviceTypes 拋出java.lang.ClassNotFoundException:com.fourhome.commons.Test_DeviceTypes
我在螞蟻classpath中的junit-3.8.2.jar。也有com.fourhome.commons。
的JUnit代碼
package com.fourhome.commons;
import junit.framework.TestCase;
import junit.*;
public class Test_DeviceTypes extends TestCase {
public void testIsTypeValid() {
assertEquals(DeviceTypes.isTypeValid(DeviceTypes.TYPE_BINARY_SENSOR), true);
}
}
你認爲'com.fourhome.commons.Test_DeviceTypes'是哪裏?如果它在類路徑中,我會感到驚訝。你在哪裏定義'$ {builddir}'屬性,以及它是如何設置的? –