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.
I had the issue of no tests being executed, even when things were set up fine.
The cause was the namespace was not the first command of the file, it was after some doc-block comments.
reverting caused phpunit to see the tests and run correctly.