I have this code ```cpp int my_module_init(my_module_t *mymodule) { assert(mymodule != NULL); return 0; } ``` how can I create a test that verify that the assertion is triggered? ```cpp void test_not_null() { UNITY_THROW_ASSERTION(myfunc(0)); } ```