int multiply(int a, int b) {
return a * b;
}
// TODO: Replace examples and use TDD by writing your own tests. The code provided here is just a how-to example.
#include <criterion/criterion.h>
// replace with the actual method being tested
int multiply(int a,int b);
Test(the_multiply_function, should_pass_all_the_tests_provided) {
cr_assert_eq(multiply(1, 1), 1);
cr_assert_eq(multiply(2, 2), 4);
}