1

以下是我的测试文件:

package test;

import org.junit.Assert;
import org.junit.Rule;
import org.junit.Test;
import org.junit.rules.TestWatcher;
import org.junit.runner.Description;

public class TestWatcherTest
{
    @Rule
    public TestWatcher testWatcher = new TestWatcher()
    {
        protected void failed(Throwable e, Description description)
        {
            System.out.println("in failed()");
        }
    };

    @Test
    public void shouldFail()
    {
        Assert.assertTrue("Test failed", false);
    }
}

输出是:

<failure message="Test failed" type="junit.framework.AssertionFailedError">junit.framework.AssertionFailedError: Test failed at test.TestWatcherTest.shouldFail(TestWatcherTest.java:24)
</failure>

似乎 failed() 没有被执行。我读了很多帖子,但似乎没有什么对我有用。我究竟做错了什么?

4

1 回答 1

0

问题出在蚂蚁配置上。从http://testautomationusingjunit.blogspot.com/2013/08/applying-rules-to-junit-tests-running.html,需要编辑目标以在类路径中包含 JUnitCore。

<target name="junit" depends="build">
        <java classname="org.junit.runner.JUnitCore">
            <classpath>
                <path location="selenium_server/selenium-server-standalone-xxx.xx.jar"/>
            </classpath>
        </java>
        <junit fork="no" haltonfailure="no" printsummary="true" failureProperty="test.failed" dir=".">
            <test name="src.SampleTest" todir="./report" />
        </junit>
</target>
于 2013-09-28T20:09:42.483 回答