use of io.cucumber.plugin.event.WriteEvent in project cucumber-jvm by cucumber.
the class TestCaseState method log.
@Override
public void log(String text) {
requireActiveTestStep();
bus.send(new WriteEvent(bus.getInstant(), testCase, text));
Attachment attachment = createAttachment();
attachment.setBody(text);
attachment.setContentEncoding(ContentEncoding.IDENTITY);
attachment.setMediaType("text/x.cucumber.log+plain");
bus.send(createEnvelope(attachment));
}
Aggregations