Skip to content
Snippets Groups Projects
Commit 0f6add94 authored by Laurent Heirendt's avatar Laurent Heirendt :airplane:
Browse files

changing test on purpose

parent 56858c1f
No related branches found
No related tags found
No related merge requests found
......@@ -4,7 +4,13 @@ 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))
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