org.assertj.db.api.navigation.ToRowFromChange Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of assertj-db Show documentation
Show all versions of assertj-db Show documentation
AssertJ-DB - Rich and fluent assertions for testing with database
/**
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on
* an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the
* specific language governing permissions and limitations under the License.
*
* Copyright 2012-2015 the original author or authors.
*/
package org.assertj.db.api.navigation;
/**
* Defines methods to navigate to a {@link org.assertj.db.type.Row} from a {@link org.assertj.db.type.Change}.
* The different methods return an assertion on one row {@link org.assertj.db.api.navigation.RowAssert}.
* These methods exists when navigating (at the beginning {@code assertThat()}) from changes.
* As shown in the diagram below, it is possible to call the method to navigate to a {@link org.assertj.db.api.navigation.RowAssert} from :
*
* - a change ({@link org.assertj.db.api.ChangeAssert})
* - a column of a change ({@link org.assertj.db.api.ChangeColumnAssert})
* - a value of a column of a change ({@link org.assertj.db.api.ChangeColumnValueAssert})
* - a row of a change ({@link org.assertj.db.api.ChangeRowAssert})
* - a value of a row of a change ({@link org.assertj.db.api.ChangeRowValueAssert})
*
*
*
*
* It is important to keep in mind that the methods are executed from the point of view of the last instance with assertion methods on a change ({@link org.assertj.db.api.ChangeAssert}).
* So all the lines of code below are equivalent : they point on the row at end point.
*
*
*
* assertThat(changes).change().rowAtEndPoint()......; // Point directly on the row at end point
* // Use the returnToChange() method to return on the change and access to the row at end point
* assertThat(changes).change().rowAtStartPoint().returnToChange().rowAtEndPoint()......;
* assertThat(changes).change().rowAtStartPoint().rowAtEndPoint()......; // Same as precedent but returnToChange() is implicit
* assertThat(changes).change().column().rowAtEndPoint()......; // The method can be call from a column
* assertThat(changes).change().column().value().rowAtEndPoint()......;
* assertThat(changes).change().column(1).value().rowAtEndPoint()......;
* // Equivalent to the precedent but with the use of the methods to return to origin
* assertThat(changes).change().column(1).value().returnToColumn().returnToChange().rowAtEndPoint()......;
*
*
*
* @author Régis Pouiller
*
* @param The class of a assertion on a row (an sub-class of {@link org.assertj.db.api.navigation.RowAssert}).
*/
public interface ToRowFromChange {
/**
* Returns assertion methods on the {@link org.assertj.db.type.Row} at start point.
*
* @return An object to make assertions on the {@link org.assertj.db.type.Row} at start point.
* @see org.assertj.db.api.ChangeAssert#rowAtStartPoint()
* @see org.assertj.db.api.ChangeColumnAssert#rowAtStartPoint()
* @see org.assertj.db.api.ChangeColumnValueAssert#rowAtStartPoint()
* @see org.assertj.db.api.ChangeRowAssert#rowAtStartPoint()
* @see org.assertj.db.api.ChangeRowValueAssert#rowAtStartPoint()
*/
public R rowAtStartPoint();
/**
* Returns assertion methods on the {@link org.assertj.db.type.Row} at end point.
*
* @return An object to make assertions on the {@link org.assertj.db.type.Row} at end point.
* @see org.assertj.db.api.ChangeAssert#rowAtEndPoint()
* @see org.assertj.db.api.ChangeColumnAssert#rowAtEndPoint()
* @see org.assertj.db.api.ChangeColumnValueAssert#rowAtEndPoint()
* @see org.assertj.db.api.ChangeRowAssert#rowAtEndPoint()
* @see org.assertj.db.api.ChangeRowValueAssert#rowAtEndPoint()
*/
public R rowAtEndPoint();
}