# Folder structure
In general, the folder structure is based on the Laravel default.
# Tests
- Browser tests:
tests/Browser
- Feature tests:
tests/Feature
- Unit tests:
tests/Unit
.
The path of the test class should mirror the path of the class that is being tested:
tests/Feature/Http/Controllers/UserControllerTest
covers app/Http/Controllers/UserController