% Test file addpath(genpath('src/')) % add this folder and all subfolders to the path c = addTwoNumbers_myName(1, 2) % test if the addition function works as expected assert(c == 3) d = multiplyTwoNumbers_myName(c, c) % test if the multiplication function works as expected assert(d == 9) % test my sqrt function assert(sqrt_myName(d) == sqrt(d))