All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.qase.cucumber6.Qase Maven / Gradle / Ivy

The newest version!
package io.qase.cucumber6;

import io.qase.commons.Methods;

public class Qase {
    public static void comment(String message) {
        Methods.addComment(message);
    }

    public static void attach(String... files) {
        Methods.addAttachments(files);
    }

    public static void attach(String fileName, String content, String contentType) {
        Methods.addAttachment(fileName, content, contentType);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy