cobertura

    1熱度

    2回答

    你好我收到以下錯誤: build.xml:61: Problem: failed to create task or type cobertura-instrument Cause: The name is undefined. Action: Check the spelling. Action: Check that any custom tasks/types have been de

    3熱度

    1回答

    我發現了cobertura-maven-plugin 2.6和jmockit 1.8之間的奇怪交互。我們的產品代碼中的一個特定模式有一個包含很多靜態方法的類,它們有效地包裝了一個類似單例的不同類。 java.lang.ExceptionInInitializerError at java.lang.reflect.Constructor.newInstance(Constructor.j

    5熱度

    3回答

    我有一個Jenkins Job,它在由幾個模塊組成的Maven項目上運行SonarRunner。當我配置SonarRunner導入Cobertura覆蓋報告時,構建失敗。 SonarQube Runner 2.4 Java 1.7.0_55 Oracle Corporation (64-bit) Windows 7 6.1 amd64 INFO: Error stacktraces are

    0熱度

    2回答

    我使用cobertura和Maven來生成代碼覆蓋率報告。當沒有足夠的代碼被測試用例覆蓋時,我們希望能夠失敗。基於Maven的-的Cobertura-插件的web page for "check",我配置了我的POM這樣的文件: <build> <plugins> <plugin> <artifactId>maven-compiler-plugin</artif

    0熱度

    1回答

    我在eclipse中使用Cobertura來生成我的java maven項目的代碼覆蓋率,它工作正常。我有大約15個測試課。每當我運行maven build時,它會爲所有這15個類生成代碼覆蓋。 有沒有什麼辦法,我可以運行cobertura代碼覆蓋率報告爲我的幾個測試classess而不是所有的測試類?我也有AllTests其中我只提到我的幾個測試班,但我猜cobertura不使用AllTests

    0熱度

    1回答

    我使用的Cobertura 2.3.0從http://cobertura.github.io/cobertura/來分析我的測試覆蓋的項目,我得到一個 Error: Could not find or load main class net.sourceforge.cobertura.instrument.Main 當試圖從執行的Cobertura,instrument.bat命令行。我查看了

    1熱度

    2回答

    有沒有辦法讓Cobertura收集幾個.jar文件的測試覆蓋率。我遇到的問題是,在覆蓋的類的重構之後,存在於相同的.jar中,不再被報告爲覆蓋(因爲它們現在處於單獨的.jar中)。 因此,對於包含多個源項目(.jar)的ear項目,有一種方法可以獲得ear-project的實際覆蓋範圍,而不是覆蓋.jar-coverage的總和。 基本上,測試反映行爲,而不是代碼結構。由於我們只是改變了結構,行爲

    0熱度

    1回答

    我有一個下面的一段非常標準JAXB代碼 StringReader is = new StringReader(rspString); Unmarshaller ums = Util.createUnMarshaller(cL, Schemas.RECEIPT_SCHEMA, GetReceiptCallResponse.class); UnmarshallerHandler u

    0熱度

    3回答

    我想從詹金斯使用gcovr產生代碼覆蓋率報告,但無濟於事,它不會產生結果,但如果我從終端運行它,它工作正常。 這裏是我執行直通詹金斯生成相同的命令: gcovr -r /path/to/sourcefiles --object-directory=/Users/testinganywhere1/pathtogcdafile -x -b -e /Developer 1> html/coverage.

    3熱度

    1回答

    我試圖在Jenkins中構建一個顯示Java單元測試運行的覆蓋報告。我可以在高級別獲得報告,顯示覆蓋已發生在類和方法級別,但是我可以查看源代碼的部分報告不起作用。