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
94 * struct kunit_ptr_not_err_assert - An expectation/assertion that a pointer is
100 * Represents an expectation/assertion that a pointer is not null and is does
127 * struct kunit_binary_assert - An expectation/assertion that compares two
134 * Represents an expectation/assertion that compares two non-pointer values. For
150 * struct kunit_binary_ptr_assert - An expectation/assertion that compares two
157 * Represents an expectation/assertion that compares two pointer values. For
173 * struct kunit_binary_str_assert - An expectation/assertion that compares two
180 * Represents an expectation/assertion that compares two string values. For
196 * struct kunit_mem_assert - An expectation/assertion that compares two
204 * Represents an expectation/assertion that compares two memory blocks. For