use of com.epam.reportportal.service.ReportPortal in project allure-java by reportportal.
the class LabelAnnotationTest method initMocks.
@BeforeEach
public void initMocks() {
mockLaunch(client, namedUuid("launchUuid"), suitedUuid, testClassUuid, stepUuid);
ReportPortal reportPortal = ReportPortal.create(client, standardParameters());
TestNgListener.REPORT_PORTAL_THREAD_LOCAL.set(reportPortal);
}
use of com.epam.reportportal.service.ReportPortal in project allure-java by reportportal.
the class SeverityAnnotationTest method initMocks.
@BeforeEach
public void initMocks() {
mockLaunch(client, namedUuid("launchUuid"), suitedUuid, testClassUuid, stepUuid);
ReportPortal reportPortal = ReportPortal.create(client, standardParameters());
TestNgListener.REPORT_PORTAL_THREAD_LOCAL.set(reportPortal);
}
use of com.epam.reportportal.service.ReportPortal in project allure-java by reportportal.
the class StaticNestedStepsTest method initMocks.
@BeforeEach
public void initMocks() {
mockLaunch(client, namedUuid("launchUuid"), suitedUuid, testUuid, stepUuid);
ReportPortal reportPortal = ReportPortal.create(client, standardParameters());
mockLogging(client);
TestNgListener.REPORT_PORTAL_THREAD_LOCAL.set(reportPortal);
}
use of com.epam.reportportal.service.ReportPortal in project allure-java by reportportal.
the class AllureIdAnnotationTest method initMocks.
@BeforeEach
public void initMocks() {
mockLaunch(client, namedUuid("launchUuid"), suitedUuid, testClassUuid, stepUuid);
ReportPortal reportPortal = ReportPortal.create(client, standardParameters());
TestNgListener.REPORT_PORTAL_THREAD_LOCAL.set(reportPortal);
}
Aggregations