Concept Flow - Test fixtures and lifecycle
Start Test Class
BeforeAll: Setup shared resources
For each Test Method
BeforeEach: Setup test fixture
Run Test Method
AfterEach: Cleanup test fixture
Repeat for next Test Method
AfterAll: Cleanup shared resources
End Test Class
This flow shows how test fixtures are set up and cleaned up before and after tests run in a Kotlin test class.