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

org.fluentlenium.assertj.custom.ListStateAssert Maven / Gradle / Ivy

There is a newer version: 5.0.4
Show newest version
package org.fluentlenium.assertj.custom;

public interface ListStateAssert {

    /**
     * Check the list size
     *
     * @return List size builder
     */
    FluentListSizeBuilder hasSize();

    /**
     * Check the list size
     *
     * @param expectedSize expected size
     * @return assertion object
     */
    FluentListAssert hasSize(int expectedSize);

    /**
     * Check is list is empty
     *
     * @return assertion object
     */
    FluentListAssert isEmpty();

    /**
     * Check is list is not empty
     *
     * @return assertion object
     */
    FluentListAssert isNotEmpty();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy