Skip to content
Snippets Groups Projects
Commit 810ee518 authored by Sylvain Arreckx's avatar Sylvain Arreckx
Browse files

make test more general.

parent 8d648e50
No related branches found
No related tags found
No related merge requests found
......@@ -2,9 +2,9 @@
addpath(genpath(pwd)) % add this foldeand r all subfolders to the path
c = addTwoNumbers_syarra(1, 1); % 1 + 1
c = addTwoNumbers_myName(1, 1); % 1 + 1
d = multiplyTwoNumbers_syarra(c, c); % 2 * 2
d = multiplyTwoNumbers_myName(c, c); % 2 * 2
% test my sqrt function
assert(sqrt_syarra(d) == sqrt(d))
assert(sqrt_myName(d) == sqrt(d))
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment