Testing guides and test reports for FIVUCSAS.
- TESTING_GUIDE.md - ⭐ Complete testing guide (908 lines)
- MOBILE_TESTING_GUIDE.md - Mobile app testing
- TEST_QUICKSTART.md - Quick testing guide
- HOW_TO_TEST_APPS.md - How to test applications
cd identity-core-api
./mvnw test
./mvnw test -Dtest="com.fivucsas.identity.*"cd mobile-app
./gradlew :shared:test
./gradlew testcd biometric-processor
pytest
pytest tests/ -vThe project includes:
- Unit tests for business logic
- Integration tests for API endpoints
- UI tests for mobile applications
- End-to-end tests for complete flows
See TESTING_GUIDE.md for detailed coverage information.
- Unit Testing: Test individual components in isolation
- Integration Testing: Test component interactions
- API Testing: Test REST endpoints with various inputs
- UI Testing: Test user interfaces and interactions
- Performance Testing: Test under load (planned)
- AAA Pattern (Arrange, Act, Assert)
- Independent and repeatable tests
- Fast execution
- Clear test names
- Edge case coverage
- Error condition testing