...
Naming conventions
- Specification classes are named as per the following:
- Unit test specifications:
<class_under_test>Spec
- Integration test specification (using dependency instanciations or running containers):
<class_under_test>IntegrationSpec
- Unit test specifications:
Use of Spock Blocks and Labels
...