Lines Matching full:expects
885 * KUNIT_EXPECT_PTR_EQ() - Expects that pointers @left and @right are equal.
927 * KUNIT_EXPECT_PTR_NE() - Expects that pointers @left and @right are not equal.
969 * KUNIT_EXPECT_LE() - Expects that @left is less than or equal to @right.
1011 * KUNIT_EXPECT_GE() - Expects that @left is greater than or equal to @right.
1032 * KUNIT_EXPECT_STREQ() - Expects that strings @left and @right are equal.
1053 * KUNIT_EXPECT_STRNEQ() - Expects that strings @left and @right are not equal.
1074 * KUNIT_EXPECT_MEMEQ() - Expects that the first @size bytes of @left and @right are equal.
1101 * KUNIT_EXPECT_MEMNEQ() - Expects that the first @size bytes of @left and @right are not equal.
1128 * KUNIT_EXPECT_NULL() - Expects that @ptr is null.
1149 * KUNIT_EXPECT_NOT_NULL() - Expects that @ptr is not null.
1170 * KUNIT_EXPECT_NOT_ERR_OR_NULL() - Expects that @ptr is not null and not err.
1416 * KUNIT_ASSERT_STRNEQ() - Expects that strings @left and @right are not equal.