Lines Matching full:expects
978 * KUNIT_EXPECT_PTR_EQ() - Expects that pointers @left and @right are equal.
1020 * KUNIT_EXPECT_PTR_NE() - Expects that pointers @left and @right are not equal.
1062 * KUNIT_EXPECT_LE() - Expects that @left is less than or equal to @right.
1104 * KUNIT_EXPECT_GE() - Expects that @left is greater than or equal to @right.
1125 * KUNIT_EXPECT_STREQ() - Expects that strings @left and @right are equal.
1146 * KUNIT_EXPECT_STRNEQ() - Expects that strings @left and @right are not equal.
1167 * KUNIT_EXPECT_MEMEQ() - Expects that the first @size bytes of @left and @right are equal.
1194 * KUNIT_EXPECT_MEMNEQ() - Expects that the first @size bytes of @left and @right are not equal.
1221 * KUNIT_EXPECT_NULL() - Expects that @ptr is null.
1242 * KUNIT_EXPECT_NOT_NULL() - Expects that @ptr is not null.
1263 * KUNIT_EXPECT_NOT_ERR_OR_NULL() - Expects that @ptr is not null and not err.