open suspend fun afterInvocation(testCase: TestCase, iteration: Int): Unit
Invoked after each 'run' of a test, with a flag indicating the iteration number. This callback is useful if you have set a test to have multiple invocations via config and want to do some setup / teardown between runs.
If you are running a test with the default single invocation then this callback is effectively the same as afterTest.
Note: If you have set multiple invocations and multiple threads, then these callbacks could be invoked concurrently.