3

我正在尝试为我们自己的框架创建适配器。我们的框架使用自己的断言机制,所以我需要编写适配器。

适配器类非常简单,看起来像这样:

public class AllureReportListener {

    private static AllureReportListener object = new AllureReportListener();

    private Allure lifecycle = Allure.LIFECYCLE;

    private String suiteUid = UUID.randomUUID().toString();

    private Set<String> startedTestNames = Collections.newSetFromMap(
            new ConcurrentHashMap<String, Boolean>());

    public static AllureReportListener getReportListener()
    {
        return object;
    }

    public void onTestSuiteStart(String testCaseName)
    {
        getLifecycle().fire(new TestSuiteStartedEvent(
                suiteUid,testCaseName
        ));
    }

    public void onTestSuiteFinish()
    {
        getLifecycle().fire(new TestSuiteFinishedEvent(suiteUid));
    }

    Allure getLifecycle() {
        return lifecycle;
    }
}

我们自己的测试套件类在正确的事件时间调用这些方法。

由于我们有自己的测试框架,我们有自己的ant任务,ownrunner如下所示:

<target name="test">
    <ownrunner classpathref="classpath" file="config/usecase/SEEDLoginCase.xml" parallel="Scenario" output="${build.report}">
    </ownrunner>
</target>

我运行了 ant build,但在 build 文件夹中没有看到任何诱惑结果。

现在我很震惊。我希望这个 ant 任务生成 allure xml 结果。我需要做什么?

4

1 回答 1

6

您也需要启动 aspect jar,这是 ant 构建的一部分。将此行添加到您的构建中:

<jvmarg value="-javaagent:${currentDir}/aspectjweaver-1.8.0.jar"/>

这将帮助您在您配置的目录下获得诱惑结果。

于 2014-09-21T10:55:08.583 回答