Всем добрый день!
используемый build.gradle
group 'ru.alfabank'
version '1.0-SNAPSHOT'
apply plugin: 'java'
compileTestJava.options.encoding = 'UTF-8'
configurations {
agent
}
dependencies {
testCompile 'info.cukes:cucumber-java:1.2.5'
testCompile 'info.cukes:cucumber-testng:1.2.5'
agent "org.aspectj:aspectjweaver:1.8.0"
compile "ru.yandex.qatools.allure:allure-cucumber-jvm-adaptor:1.5.1"
testCompile 'junit:junit:4.12'
compile group: 'org.slf4j', name: 'slf4j-simple', version: '1.7.21'
}
test.doFirst {
jvmArgs "-javaagent:${configurations.agent.singleFile}"
}
test {
useTestNG()
testLogging.showStandardStreams = true
}
buildscript {
repositories {
jcenter()
}
dependencies {
classpath "ru.d10xa:gradle-allure-plugin:0.5.2"
}
}
apply plugin: 'ru.d10xa.allure'
allure {
aspectjweaver = true
// Choose your test framework.
junit = false
testNG = true
spock = false
allureJunitAspectjAdaptorVersion = "0.1.0"
// Choose if you're using Geb for web tests
geb = false
}
используемый runner
@CucumberOptions(plugin = {"pretty"})
public class CucumberRunnerTNG{
@Test()
public void runs(){
new TestNGCucumberRunner(getClass()).runCukes();
}
}
в test/resources находится 2 feature файла
после выполнения действий
gradle test
allureReport
в консоли видно что 2 теста выполняются, показывается правильное число сценариев и шагов
но генерируется следующий отчет
подскажите как сделать так чтобы в отчете отображалась информация о запущенных feature файлах