Lines Matching full:expects
892 * KUNIT_EXPECT_PTR_EQ() - Expects that pointers @left and @right are equal.
934 * KUNIT_EXPECT_PTR_NE() - Expects that pointers @left and @right are not equal.
976 * KUNIT_EXPECT_LE() - Expects that @left is less than or equal to @right.
1018 * KUNIT_EXPECT_GE() - Expects that @left is greater than or equal to @right.
1039 * KUNIT_EXPECT_STREQ() - Expects that strings @left and @right are equal.
1060 * KUNIT_EXPECT_STRNEQ() - Expects that strings @left and @right are not equal.
1081 * KUNIT_EXPECT_MEMEQ() - Expects that the first @size bytes of @left and @right are equal.
1108 * KUNIT_EXPECT_MEMNEQ() - Expects that the first @size bytes of @left and @right are not equal.
1135 * KUNIT_EXPECT_NULL() - Expects that @ptr is null.
1156 * KUNIT_EXPECT_NOT_NULL() - Expects that @ptr is not null.
1177 * KUNIT_EXPECT_NOT_ERR_OR_NULL() - Expects that @ptr is not null and not err.
1423 * KUNIT_ASSERT_STRNEQ() - Expects that strings @left and @right are not equal.