To improve my quality of code, I\'ve decided to try to learn how to test my code using Unit Testing instead of my mediocre-at-best testing solutions.
The function names in the test file must either be prefixed with test or there should be a comment added before function
test
/** @test */
Make sure that it is not
/* @test */
because that doesn't work. there needs to be two asterisks after slash not one.