从Dmytro Pishchukhin's blog我了解到,pax-exam的跑步者可以通过以下方式从包含平台定义的扩展xml配置自己:
@Configuration
public static Option[] configurePlatform() {
return options(
...
rawPaxRunnerOption("--definitionURL", "file:platform-equinox-3.6M7.xml")
);
}
但似乎已弃用并删除了rawPaxRunnerOption
。这些天有没有办法加载这个定义? (Pax Runner Docs处的文档)似乎没有更新。