org.assertj.db.api.assertions.AssertOnValueNonEquality Maven / Gradle / Ivy
Show all versions of assertj-db Show documentation
/**
* 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.assertions;
import org.assertj.db.type.DateTimeValue;
import org.assertj.db.type.DateValue;
import org.assertj.db.type.TimeValue;
/**
* Defines the assertion methods on the non equality of a value.
*
* @param The "self" type of this assertion class. Please read "Emulating 'self types' using Java Generics to simplify fluent API implementation"
* for more details.
* @author Régis Pouiller
*/
public interface AssertOnValueNonEquality> {
/**
* Verifies that the value is not equal to a boolean.
*
* Example where the assertion verifies that the value in the first {@code Column} of the first {@code Row} of the
* {@code Table} is not equal to true boolean :
*
*
*
*
* assertThat(table).row().value().isNotEqualTo(true);
*
*
*
* Example where the assertion verifies that the value in the first {@code Column} of the {@code Row} at end point
* of the first {@code Change} is not equal to true boolean :
*
*
*
*
* assertThat(changes).change().rowAtEndPoint().value().isNotEqualTo(true);
*
*
*
* @param expected The expected boolean value.
* @return {@code this} assertion object.
* @throws AssertionError If the value is equal to the boolean in parameter.
* @see org.assertj.db.api.AbstractValueAssert#isNotEqualTo(Boolean)
* @see org.assertj.db.api.AbstractAssertWithValues#isNotEqualTo(Boolean)
*/
public T isNotEqualTo(Boolean expected);
/**
* Verifies that the value is not equal to a array of bytes.
*
* Example where the assertion verifies that the value in the first {@code Column} of the first {@code Row} of the
* {@code Table} is not equal to a array of bytes loaded from a file in the classpath :
*
*
*
*
* byte[] bytes = bytesContentFromClassPathOf("file.png");
* assertThat(table).row().value().isNotEqualTo(bytes);
*
*
*
* Example where the assertion verifies that the value in the first {@code Column} of the {@code Row} at end point
* of the first {@code Change} is not equal to a array of bytes loaded from a file in the classpath :
*
*
*
*
* byte[] bytes = bytesContentFromClassPathOf("file.png");
* assertThat(changes).change().rowAtEndPoint().value().isNotEqualTo(bytes);
*
*
*
* @param expected The expected array of bytes value.
* @return {@code this} assertion object.
* @throws AssertionError If the value is equal to the array of bytes in parameter.
* @see org.assertj.db.api.AbstractValueAssert#isNotEqualTo(byte[])
* @see org.assertj.db.api.AbstractAssertWithValues#isNotEqualTo(byte[])
*/
public T isNotEqualTo(byte[] expected);
/**
* Verifies that the value is not equal to a date/time value.
*
* Example where the assertion verifies that the value in the first {@code Column} of the first {@code Row} of the
* {@code Table} is not equal to a date/time value :
*
*
*
*
* assertThat(table).row().value().isNotEqualTo(DateTimeValue.of(DateValue.of(2014, 7, 7), TimeValue.of(21, 29)));
*
*
*
* Example where the assertion verifies that the value in the first {@code Column} of the {@code Row} at end point
* of the first {@code Change} is not equal to a date/time value :
*
*
*
*
* assertThat(changes).change().rowAtEndPoint().value().isNotEqualTo(DateTimeValue.of(DateValue.of(2014, 7, 7), TimeValue.of(21, 29)));
*
*
*
* @param expected The expected date/time value.
* @return {@code this} assertion object.
* @throws AssertionError If the value is equal to the date/time value in parameter.
* @see org.assertj.db.api.AbstractValueAssert#isNotEqualTo(DateTimeValue)
* @see org.assertj.db.api.AbstractAssertWithValues#isNotEqualTo(DateTimeValue)
*/
public T isNotEqualTo(DateTimeValue expected);
/**
* Verifies that the value is not equal to a date value.
*
* Example where the assertion verifies that the value in the first {@code Column} of the first {@code Row} of the
* {@code Table} is not equal to a date value :
*
*
*
*
* assertThat(table).row().value().isNotEqualTo(DateValue.of(2014, 7, 7));
*
*
*
* Example where the assertion verifies that the value in the first {@code Column} of the {@code Row} at end point
* of the first {@code Change} is not equal to a date value :
*
*
*
*
* assertThat(changes).change().rowAtEndPoint().value().isNotEqualTo(DateValue.of(2014, 7, 7));
*
*
*
* @param expected The expected date value.
* @return {@code this} assertion object.
* @throws AssertionError If the value is equal to the date value in parameter.
* @see org.assertj.db.api.AbstractValueAssert#isNotEqualTo(DateValue)
* @see org.assertj.db.api.AbstractAssertWithValues#isNotEqualTo(DateValue)
*/
public T isNotEqualTo(DateValue expected);
/**
* Verifies that the value is not equal to a number.
*
* Example where the assertion verifies that the value in the first {@code Column} of the first {@code Row} of the
* {@code Table} is not equal to number 3 :
*
*
*
*
* assertThat(table).row().value().isNotEqualTo(3);
*
*
*
* Example where the assertion verifies that the value in the first {@code Column} of the {@code Row} at end point
* of the first {@code Change} is not equal to number 3 :
*
*
*
*
* assertThat(changes).change().rowAtEndPoint().value().isNotEqualTo(3);
*
*
*
* @param expected The expected number value.
* @return {@code this} assertion object.
* @throws AssertionError If the value is equal to the number in parameter.
* @see org.assertj.db.api.AbstractValueAssert#isNotEqualTo(Number)
* @see org.assertj.db.api.AbstractAssertWithValues#isNotEqualTo(Number)
*/
public T isNotEqualTo(Number expected);
/**
* Verifies that the value is not equal to a text.
*
* Example where the assertion verifies that the value in the first {@code Column} of the first {@code Row} of the
* {@code Table} is not equal to a text :
*
*
*
*
* assertThat(table).row().value().isNotEqualTo("text");
*
*
*
* Example where the assertion verifies that the value in the first {@code Column} of the {@code Row} at end point
* of the first {@code Change} is not equal to a text :
*
*
*
*
* assertThat(changes).change().rowAtEndPoint().value().isNotEqualTo("text");
*
*
*
* @param expected The expected text value.
* @return {@code this} assertion object.
* @throws AssertionError If the value is equal to the text in parameter.
* @see org.assertj.db.api.AbstractValueAssert#isNotEqualTo(String)
* @see org.assertj.db.api.AbstractAssertWithValues#isNotEqualTo(String)
*/
public T isNotEqualTo(String expected);
/**
* Verifies that the value is not equal to a time value.
*
* Example where the assertion verifies that the value in the first {@code Column} of the first {@code Row} of the
* {@code Table} is not equal to a time value :
*
*
*
*
* assertThat(table).row().value().isNotEqualTo(TimeValue.of(21, 29, 30));
*
*
*
* Example where the assertion verifies that the value in the first {@code Column} of the {@code Row} at end point
* of the first {@code Change} is not equal to a time value :
*
*
*
*
* assertThat(changes).change().rowAtEndPoint().value().isNotEqualTo(TimeValue.of(21, 29, 30));
*
*
*
* @param expected The expected time value.
* @return {@code this} assertion object.
* @throws AssertionError If the value is equal to the time value in parameter.
* @see org.assertj.db.api.AbstractValueAssert#isNotEqualTo(TimeValue)
* @see org.assertj.db.api.AbstractAssertWithValues#isNotEqualTo(TimeValue)
*/
public T isNotEqualTo(TimeValue expected);
/**
* Verifies that the value is not equal to zero.
*
* Example where the assertion verifies that the value in the first {@code Column} of the first {@code Row} of the
* {@code Table} is not equal to zero :
*
*
*
*
* assertThat(table).row().value().isNotZero();
*
*
*
* Example where the assertion verifies that the value in the first {@code Column} of the {@code Row} at end point
* of the first {@code Change} is not equal to zero :
*
*
*
*
* assertThat(changes).change().rowAtEndPoint().value().isNotZero();
*
*
*
* @return {@code this} assertion object.
* @throws AssertionError If the value is equal to zero.
* @see org.assertj.db.api.AbstractValueAssert#isNotZero()
* @see org.assertj.db.api.AbstractAssertWithValues#isNotZero()
*/
public T isNotZero();
}