Interface Output

All Known Implementing Classes:
OutputType

public interface Output
Interface of the output of a output of assertj-db.
Since:
1.1.0
Author:
Régis Pouiller
  • Method Details

    • getTableOutput

      String getTableOutput(org.assertj.core.api.WritableAssertionInfo info, Table table)
      Returns the output of a Table.
      Parameters:
      info - Writable information about an assertion.
      table - Table.
      Returns:
      The output of a Table.
    • getRequestOutput

      String getRequestOutput(org.assertj.core.api.WritableAssertionInfo info, Request request)
      Returns the output of a Request.
      Parameters:
      info - Writable information about an assertion.
      request - Request.
      Returns:
      The output of a Request.
    • getChangesOutput

      String getChangesOutput(org.assertj.core.api.WritableAssertionInfo info, Changes changes)
      Returns the output of Changes.
      Parameters:
      info - Writable information about an assertion.
      changes - Changes.
      Returns:
      The output of Changes.
    • getChangeOutput

      String getChangeOutput(org.assertj.core.api.WritableAssertionInfo info, Change change)
      Returns the output of a Change.
      Parameters:
      info - Writable information about an assertion.
      change - Change.
      Returns:
      The output of a Change.
    • getRowOutput

      String getRowOutput(org.assertj.core.api.WritableAssertionInfo info, Row row)
      Returns the output of a Row.
      Parameters:
      info - Writable information about an assertion.
      row - Row.
      Returns:
      The output of a Row.
    • getColumnOutput

      String getColumnOutput(org.assertj.core.api.WritableAssertionInfo info, Column column)
      Returns the output of a Column.
      Parameters:
      info - Writable information about an assertion.
      column - Column.
      Returns:
      The output of a Column.
    • getChangeColumnOutput

      String getChangeColumnOutput(org.assertj.core.api.WritableAssertionInfo info, String columnName, Value valueAtStartPoint, Value valueAtEndPoint)
      Returns the output of a Column of a Change.
      Parameters:
      info - Writable information about an assertion.
      columnName - Column name.
      valueAtStartPoint - Value at start point.
      valueAtEndPoint - Value at end point.
      Returns:
      The output of a Column of a Change.
    • getValueOutput

      String getValueOutput(org.assertj.core.api.WritableAssertionInfo info, Value value)
      Returns the output of a value.
      Parameters:
      info - Writable information about an assertion.
      value - Value.
      Returns:
      The output of a value.