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

com.jdiai.asserts.ShouldValidations Maven / Gradle / Ivy

There is a newer version: 1.1.8
Show newest version
package com.jdiai.asserts;

import com.jdiai.interfaces.HasCore;

import static com.jdiai.asserts.ShouldUtils.handleShouldBe;

public interface ShouldValidations {
    default T shouldBe(Condition... conditions) {
        return handleShouldBe((T) this, conditions);
    }

    default T should(Condition... conditions) {
        return shouldBe(conditions);
    }

    default T waitFor(Condition... conditions) {
        return shouldBe(conditions);
    }

    default T shouldHave(Condition... conditions) {
        return shouldBe(conditions);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy