我的設置:assertArrayEquals(Object []對象O1,對象[] O2)無法找到
Netbeans 6.7
Java6
JUnit 4.5 added as the Test libraries
當我嘗試在二級陣列通過(強制轉換爲對象[])我得到錯誤「不能找到符號「,我的測試用例不會編譯。
我沒有與其他assert語句的問題,正如我所說我正在使用JUnit 4.5庫。
有沒有人有如何解決這個問題的線索,或觀察到這種古怪的行爲?
Netbeans能夠通過它的自動完成功能找到這個函數聲明,但它無法找到它所在的位置,或者可以導航到源。
示例代碼:
CustomObject[] coa = { new CustomObject() ....}
CustomObject[] expected = { new CustomObject() ... }
assertArrayEquals((Object[])coa, (Object[])expected);
請張貼測試代碼。 – SingleShot