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

com.vmlens.report.element.TestResult Maven / Gradle / Ivy

The newest version!
package com.vmlens.report.element;

public class TestResult {
    
    private final String text;
    private final String style;

    public TestResult(String text, String style) {
        this.text = text;
        this.style = style;
    }

    public String text() {
        return text;
    }

    public String style() {
        return style;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy