为自己的框架创建新的诱惑适配器



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

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

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;
    }
}

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

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

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

我运行了ant构建,但在构建文件夹中没有看到任何吸引人的结果。

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

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

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

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

相关内容

  • 没有找到相关文章

最新更新