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

net.thucydides.core.hamcrest.Matchers Maven / Gradle / Ivy

There is a newer version: 0.9.275
Show newest version
package net.thucydides.core.hamcrest;

import org.hamcrest.Factory;
import org.hamcrest.Matcher;

import java.util.List;

/**
 * General-purpose Hamcrest matchers.
 */
public class Matchers {

    @Factory
    public static Matcher> containsInOrder(final String... values) {
        return new ContainsInOrderMatcher(values);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy