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

info.novatec.testit.webtester.conditions.values.EqualTo Maven / Gradle / Ivy

package info.novatec.testit.webtester.conditions.values;

import lombok.AllArgsConstructor;
import lombok.NonNull;

import info.novatec.testit.webtester.conditions.Condition;


/**
 * {@link Condition} which returns whether or not the checked value is equal to the given expected value.
 * 

* Example: Wait.untilSupplied(textField::getText).is(equalTo("foo")); * * @param type of the object to test against the condition * @see Condition * @since 2.0 */ @AllArgsConstructor public class EqualTo implements Condition { @NonNull private final T expected; @Override public boolean test(T value) { return expected.equals(value); } @Override public String toString() { return "equalTo('" + expected + "')"; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy