我目前正在编写Fest Junit测试用例,稍后将在Hudson测试服务器上运行。如果任何测试用例失败,我想让他们使用桌面屏幕截图。我发现这个网址有一个关于如何设置它的教程:http://fest.codehaus.org/Taking+Screenshots+of+JUnit+Test+Failures但测试甚至不在本地运行。
以下是我试图运行的java代码的简略副本:
@RunWith(GUITestRunner.class)
public class AddingNewUserTest extends FestTest {
@Before
public void setup(){
super.setup(constants.users.name);
}
@After
public void cleanup(){super.shutDown();
}
@GUITest
public void testAddingNewUser() throws InterruptedException{
//java code
}
我试图运行的JUnit Ant任务:
<target name="run.tests" description="Runs all the junit tests.">
<echo message="Run the tests"/>
<taskdef resource="festjunittasks" classpathref="classpath" />
<junit printsummary="true" errorproperty="tests.failed" failureproperty="tests.failed" fork="true" showoutput="yes">
<classpath refid="classpath" />
<formatter classname="org.fest.swing.junit.ant.ScreenshotOnFailureResultFormatter" extension=".xml" />
<batchtest todir="${test.output.reports.test.dir}" unless="testcase" fork="true">
<fileset dir="${output.mainclasses.dir}" includes="**/AddingNewUserTest.class" excludes="**/FestTest.class,**/DefaultsTest.class"/>
</batchtest>
</junit>
<festreport todir="${test.output.reports.dir}">
<classpath refid="classpath" />
<fileset dir="${test.output.reports.test.dir}">
<include name="TEST-*.xml" />
</fileset>
<report format="frames" todir="${test.output.reports.dir}/html" />
</festreport>
<antcall target="kill.server"/>
</target>
任何帮助都会很棒。
Junit在报告中抛出错误的屏幕截图
答案 0 :(得分:0)
这是我在互联网上找到一些源代码后发现的一个快速解决方案(如果有人偶然发现这个帖子): java代码:
@GUITest
public void testAddingNewUser() throws InterruptedException{
//java code
需要
@Test
@GUITest
public void testAddingNewUser() throws InterruptedException{
//java code
其他一切似乎都是正确的