spock

    3熱度

    1回答

    我試圖實現類似的功能在以下TestNG的代碼: @Test public void method1() {} @Test(dependsOnMethods = { "method1" }) public void method2() {} 我無法找到類似的概念斯波克。那可能嗎?

    0熱度

    2回答

    我使用內置spock的Grails 3.1.7。它看起來像是在單元測試執行過程中遇到由控制器呈現的服務返回值的問題。 Service方法返回null,然後控制器拋出一個GroovyRuntimeException,由於返回「null」,抱怨「無法解析調用哪個方法」。 控制器的動作碼的樣品:測試套件代碼的 JSON composeJsonResponse(instance, String succe

    0熱度

    1回答

    我正在嘗試將Grails應用程序從2.4.5升級到2.5.5。當我運行test-app,我得到以下內容: Error running unit tests: null java.lang.AbstractMethodError at org.spockframework.runtime.GlobalExtensionRegistry.startGlobalExtensions(Glo

    0熱度

    1回答

    我與Grails的2.4.5工作,努力讓Grails的劃定不同的異常類型。 假設我想嘲笑下面: class FooController { def barService ... def fooAction() { try { barService.someMethod(params) } catch(e) { if (e instanceof FooException) { ...

    5熱度

    1回答

    他,大家好!我的測試由jenkins從一般軟件包運行。我可以在spock中設置測試包,它將首先運行,如果在此包中不會通過任何測試,則應該跳過其他測試。我見過這樣的例子: import org.junit.runner.RunWith; import org.junit.runners.Suite; @RunWith(Suite.class) @Suite.SuiteClasses({Te

    0熱度

    2回答

    我有一個自定義的驗證使用Spring bean的約束的命令對象: class UserPasswordCommand { String currentPassword //other fields.... static constraints = { currentPassword validator: { currPass, upc ->

    0熱度

    1回答

    給定一個域類,如: class Person { String name static mapping = { name column: 'TheName' } } 爲Person的name屬性實際上映射到SQL表的TheName列。 那麼,我該如何測試,使用Spock來確保映射存在於域類中?如何獲得訪問映射,當我創建一個新的Person對象爲這樣

    0熱度

    1回答

    我想消費一個web服務並添加斷言到其響應。我得到以下異常: groovyx.net.http.ResponseParseException: at groovyx.net.http.HTTPBuilder$1.handleResponse(HTTPBuilder.java:495) ...... at Subscription.Order Products(Subsc

    0熱度

    1回答

    在我的項目中,我們使用spock進行單元測試。我想用三葉草配置spock測試用例,以便它可以生成覆蓋率報告。我已經按照步驟在maven中配置它。但是,我無法正確配置它。 任何人都可以指導我配置spock的三葉草? 我的groovy測試用例在src/test/groovy包中。 感謝, 周杰倫帕特爾

    0熱度

    1回答

    我在gock單元測試中嘲笑grails 3.1.7中的InputStream有問題。 我在link之前問過類似的問題。 問題已解決,但當我添加@CompileStatic註釋時,它返回。我的代碼: @CompileStatic class MongoImage implements Image { GridFSFile gridFSFile ... byte[] g