Integration Testing Best Practices
File Naming Conventions
It is recommended that files match the name of the class plus the word 'Test'.
example:
CurriculumCourseControllerTest.php
will test the CurriculumCourseController.
LotteriesServiceTest.php
will test the LotteriesService.
Last updated