org.fluentlenium.assertj.custom.ListStateAssert Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fluentlenium-assertj Show documentation
Show all versions of fluentlenium-assertj Show documentation
AssertJ Extension for FluentLenium
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();
}