與@Autowired測試類我有src/groovy
一類這樣的如何使用斯波克
public class MyClass {
@AutoWired
SomeOtherClass someOtherClass
String test() {
return someOtherClass.testMethod()
}
}
當我寫這個方法,我得到一個錯誤的測試:Cannot invoke method testMethod() on null object
。
這是我的測試: -
def "test test"() {
expect:
myClass.test() == "somevalue"
}
我在做什麼錯?有沒有辦法模擬@Autowired
課程?
你有沒有嘗試做Spring關閉? –