% Test file c = addTwoNumbers_diana(1, 2) % test if the addition function works as expected assert(c == 3) d = multiplyTwoNumbers_diana(c, c) % test if the multiplication function works as expected assert(d == 9) % Test for the homework % test my sqrt function assert(sqrt_diana(d) == sqrt(d))