Lines Matching full:assertion
790 * @fmt: an informational message to be printed when the assertion is made.
1591 * KUNIT_ASSERT_TRUE() - Sets an assertion that @condition is true.
1599 * this is otherwise known as an *assertion failure*.
1612 * KUNIT_ASSERT_FALSE() - Sets an assertion that @condition is false.
1616 * Sets an assertion that the value that @condition evaluates to is false. This
1617 * is the same as KUNIT_EXPECT_FALSE(), except it causes an assertion failure
1618 * (see KUNIT_ASSERT_TRUE()) when the assertion is not met.
1631 * KUNIT_ASSERT_EQ() - Sets an assertion that @left and @right are equal.
1636 * Sets an assertion that the values that @left and @right evaluate to are
1637 * equal. This is the same as KUNIT_EXPECT_EQ(), except it causes an assertion
1638 * failure (see KUNIT_ASSERT_TRUE()) when the assertion is not met.
1657 * Sets an assertion that the values that @left and @right evaluate to are
1658 * equal. This is the same as KUNIT_EXPECT_EQ(), except it causes an assertion
1659 * failure (see KUNIT_ASSERT_TRUE()) when the assertion is not met.
1673 * KUNIT_ASSERT_NE() - An assertion that @left and @right are not equal.
1678 * Sets an assertion that the values that @left and @right evaluate to are not
1679 * equal. This is the same as KUNIT_EXPECT_NE(), except it causes an assertion
1680 * failure (see KUNIT_ASSERT_TRUE()) when the assertion is not met.
1700 * Sets an assertion that the values that @left and @right evaluate to are not
1701 * equal. This is the same as KUNIT_EXPECT_NE(), except it causes an assertion
1702 * failure (see KUNIT_ASSERT_TRUE()) when the assertion is not met.
1715 * KUNIT_ASSERT_LT() - An assertion that @left is less than @right.
1720 * Sets an assertion that the value that @left evaluates to is less than the
1722 * it causes an assertion failure (see KUNIT_ASSERT_TRUE()) when the assertion
1736 * KUNIT_ASSERT_LE() - An assertion that @left is less than or equal to @right.
1741 * Sets an assertion that the value that @left evaluates to is less than or
1743 * KUNIT_EXPECT_LE(), except it causes an assertion failure (see
1744 * KUNIT_ASSERT_TRUE()) when the assertion is not met.
1758 * KUNIT_ASSERT_GT() - An assertion that @left is greater than @right.
1763 * Sets an assertion that the value that @left evaluates to is greater than the
1765 * it causes an assertion failure (see KUNIT_ASSERT_TRUE()) when the assertion
1780 * KUNIT_ASSERT_GE() - Assertion that @left is greater than or equal to @right.
1785 * Sets an assertion that the value that @left evaluates to is greater than the
1787 * it causes an assertion failure (see KUNIT_ASSERT_TRUE()) when the assertion
1802 * KUNIT_ASSERT_STREQ() - An assertion that strings @left and @right are equal.
1807 * Sets an assertion that the values that @left and @right evaluate to are
1809 * assertion failure (see KUNIT_ASSERT_TRUE()) when the assertion is not met.
1845 * KUNIT_ASSERT_NOT_ERR_OR_NULL() - Assertion that @ptr is not null and not err.
1849 * Sets an assertion that the value that @ptr evaluates to is not null and not
1851 * KUNIT_EXPECT_NOT_ERR_OR_NULL(), except it causes an assertion failure (see
1852 * KUNIT_ASSERT_TRUE()) when the assertion is not met.