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

net.thucydides.core.matchers.PublicThucydidesMatchers Maven / Gradle / Ivy

package net.thucydides.core.matchers;

import net.thucydides.core.model.TestOutcome;
import net.thucydides.core.model.TestResult;
import org.hamcrest.Factory;
import org.hamcrest.Matcher;


public class PublicThucydidesMatchers {

    @Factory
    public static Matcher containsResults(TestResult... testResults) {
        return new TestOutcomeResultsMatcher(testResults);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy