package au.org.ecoinformatics.eml.matchers; import java.util.List; import org.hamcrest.Matcher; import au.org.ecoinformatics.eml.jaxb.eml.I18NNonEmptyStringType; public class EcoinformaticsEmlMatchers { public static Matcher> hasFirstI18NContent(String expectedContent) { return new HasFirstI18NContentMatcher(expectedContent); } public static Matcher hasI18NContent(String expectedContent) { return new HasI18NContentMatcher(expectedContent); } }