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.
Mine was a bit funny.
When I used php artisan make:test I accidentally put .php like ProductRewardPointController.php which created ProductRewardPointController.php.php and phpunit simply ignored it.
php artisan make:test
ProductRewardPointController.php
ProductRewardPointController.php.php
I just delete the extra .php and things back to normal