Interface AssertOnExistence<T extends AssertOnExistence<T>>

Type Parameters:
T - The "self" type of this assertion class. Please read "Emulating 'self types' using Java Generics to simplify fluent API implementation" for more details.
All Known Subinterfaces:
AssertOnRowOfChangeExistence<T>
All Known Implementing Classes:
ChangeRowAssert, TableAssert

public interface AssertOnExistence<T extends AssertOnExistence<T>>
Defines the assertion method on existence of something.
Author:
Avinash Ananth Narayan R
  • Method Summary

    Modifier and Type
    Method
    Description
    Verifies that the thing represented doesn't exist.
    Verifies that the thing represented exist.
  • Method Details

    • exists

      T exists()
      Verifies that the thing represented exist.
      Returns:
      this assertion object.
    • doesNotExist

      T doesNotExist()
      Verifies that the thing represented doesn't exist.
      Returns:
      this assertion object.