Lines Matching full:assertion
3 * Assertion and expectation serialization API.
19 * enum kunit_assert_type - Type of expectation/assertion.
20 * @KUNIT_ASSERTION: Used to denote that a kunit_assert represents an assertion.
24 * represents an expectation or an assertion.
44 * struct kunit_assert - Data for printing a failed assertion or expectation.
46 * Represents a failed expectation/assertion. Contains all the data necessary to
60 * struct kunit_fail_assert - Represents a plain fail expectation/assertion.
79 * Represents a simple expectation or assertion that simply asserts something is
107 * struct kunit_ptr_not_err_assert - An expectation/assertion that a pointer is
113 * Represents an expectation/assertion that a pointer is not null and is does
154 * struct kunit_binary_assert - An expectation/assertion that compares two
161 * Represents an expectation/assertion that compares two non-pointer values. For
187 * This is ultimately used by binary assertion macros like KUNIT_EXPECT_EQ, etc.
198 * struct kunit_binary_ptr_assert - An expectation/assertion that compares two
205 * Represents an expectation/assertion that compares two pointer values. For
221 * struct kunit_binary_str_assert - An expectation/assertion that compares two
228 * Represents an expectation/assertion that compares two string values. For