Contents

XCTAssertNotEqualWithAccuracy

Asserts that two expressions don’t have the same value within a specified accuracy.

Declaration

#define XCTAssertNotEqualWithAccuracy(expression1, expression2, accuracy, ...)

Parameters

  • expression1:

    An expression of C scalar type.

  • expression2:

    An expression of C scalar type.

  • accuracy:

    An expression of C scalar type describing the maximum difference between expression1 and expression2 for these values to be considered equal.

  • :

    An optional description of the failure. A literal Nsstring, optionally with string format specifiers.

Discussion

Generates a failure when the difference between expression1 and expression2 is less than or equal to accuracy.

See Also

Tests for Equality Within a Specified Accuracy