############################# cmake_test/asserts/true_false ############################# .. module:: cmake_test/asserts/true_false .. function:: ct_assert_true(var) Asserts that the provided variable is true. :code:`var` must be a non-empty string, otherwise an :code:`ASSERTION_FAILED` exception is raised. :param var: The variable to check for truthiness. :type var: str* .. function:: ct_assert_false(var) Asserts that the provided variable is false. :param var: The variable to check for falseness. :type var: str*