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

org.junit.internal.matchers.StringContains Maven / Gradle / Ivy

Go to download

JUnit is a regression testing framework written by Erich Gamma and Kent Beck. It is used by the developer who implements unit tests in Java.

There is a newer version: 4.13.2
Show newest version
/*  Copyright (c) 2000-2006 hamcrest.org
 */
package org.junit.internal.matchers;

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

/**
 * Tests if the argument is a string that contains a substring.
 */
public class StringContains extends SubstringMatcher {
    public StringContains(String substring) {
        super(substring);
    }

    @Override
	protected boolean evalSubstringOf(String s) {
        return s.indexOf(substring) >= 0;
    }

    @Override
	protected String relationship() {
        return "containing";
    }

    @Factory
    public static Matcher containsString(String substring) {
        return new StringContains(substring);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy