We're currently using JUnit 4.4 and Ant 1.7.1 for our builds. I have some test cases that are @Ignored. When I run them in Eclipse, the JUnit test runner reports them ... |
I am using the ant tasks 'junit' and 'junitreport' to run my JUnit Tests and generate a report at the end (=> "Unit Test Results").
Is it there some easy way to ... |
So, I'm setting up Hudson right now and couldn't be more pleased. However, I need to display a table in the test results page as opposed to the graph it provides. ... |
with ant it is possible to run JUnit tests and generate test reports in several formats: text, HTML, XML ..
and it is recurrent to send test results by email to the ... |
I have a Junit process that runs a bunch of data integrity tests every night, and I would like to have it email the results in a nicely formatted HTML email. ... |
I am coding a java class that generates HTML table reports for JUnit tests and use CSS for visual formatting. I am having an issue aligning the cells since the number ... |
I use the Ant API for creating tasks programmatically, but I have not yet found the class that create JUnit report task.
in short, I want the equivalent of the code ... |
|
I tried to get Cobertura running inside my ant script. All is successfull (source code building, junit tests, cobertura reports (xml / html); but in html reports, the code coverage is ... |
I'd like to compare two or more JUnit test results reports.
Say I have three test runs of the same testsuite and I want to get e.g. a HTML table which shows ... |
I've yet to find a configuration that works. I do have one that produces no errors but it doesn't seem to do anything either.
|
Using the JUnit assumeTrue, you can skip a test, but is there any way to tell JUnit that the test has been skipped? It seems to just report that the ... |
I tried to write an ant with junit test, but get below result,
unittest:
[junit] Running com.mytest.utiltest
[junit] Tests run: 1, Failures: 0, Errors: 1, ...
|
I'm very new to ant and junit. I need junit to create an xml output so I can integrate with team city. The tests run just fine, but I'm ... |
All of my reports get generated, but my coverage shows as 0%. I even created one dummy test to make sure it wasn't the way my tests were written, and it ... |
|
Is there a way to customise the failure report from junit such that I can remove the time value from the test results? First prize - a way to do this ... |
I wanna generate my reports so i used maven-surefire-plugin so this is my pom.xml code:
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.10</version>
<executions>
<execution>
<id>test-reports</id>
<phase>install</phase>
<configuration>
...
|
I have a Junit html report that is generated from an ant script with the <junitreport> element. Everything looks great except for when I try to view failures, nothing is enumerated ... |
Is there a way to add a new column show to the test case description using junit and ant? I want to add a new column to the test cases in ... |
For a customer we need to generate detailed test reports for integration tests which not only show, that everything is green, but also what the test did. My colleagues and I ... |
I am able to successfully run my JUnit test suite from the command line and now I want run these tests from Hudson.
However , for Hudson to generate the reports , ... |
|
|
generateReport: [junitreport] [Fatal Error] TEST-PerformanceCheck.xml:999:36: Invalid byte 1 of 1-byte UTF-8 sequence. [junitreport] The file C:\soapUI-1.7.1\bin\report\TEST-PerformanceCheck.xml is not a valid XML document. It is possibly corrupted. [junitreport] Processing C:\soapUI-1.7.1\bin\report\TESTS-TestSuites.xml to C:\DOCUME~1\e01600\LOCALS~1\Temp\null2052254751 [junitreport] Loading stylesheet jar:file:/C:/Ant/apache-ant-1.7.0/lib/ant-junit.jar!/org/apache/tools/ant/taskdefs/optional/junit/xsl/junit-frames.xsl [junitreport] Transform time: 500ms [junitreport] Deleting: C:\DOCUME~1\e01600\LOCALS~1\Temp\null2052254751 If i remove these special characters it works fine. If any one from you knew the settings to change ... |