How to use afterAny method of io.kotest.core.TestConfiguration class

Best Kotest code snippet using io.kotest.core.TestConfiguration.afterAny

Spec.kt

Source:Spec.kt Github

copy

Full Screen

...361 * Override this function to provide custom behavior.362 *363 * The [TestCase] and it's [TestResult] are provided as parameters.364 */365 open suspend fun afterAny(testCase: TestCase, result: TestResult) {}366}367/**368 * A [RootTest] is a defined test that has not yet been materialized at runtime.369 * The materialization process turns a root test into a test case.370 */371data class RootTest(372 val name: TestName,373 val test: suspend TestScope.() -> Unit,374 val type: TestType,375 val source: SourceRef,376 val disabled: Boolean?, // if the test is explicitly disabled, say through an annotation or method name377 val config: UnresolvedTestConfig?, // if specified by the test, may be null378 val factoryId: FactoryId?, // if this root test was added from a factory379)...

Full Screen

Full Screen

TestConfiguration.kt

Source:TestConfiguration.kt Github

copy

Full Screen

...143 * and the [TestResult] outcome of that test.144 */145 open fun afterTest(f: AfterTest) {146 register(object : AfterTestListener {147 override suspend fun afterAny(testCase: TestCase, result: TestResult) {148 f(Tuple2(testCase, result))149 }150 })151 }152 /**153 * Registers a callback to be executed before every [TestCase]154 * with type [TestType.Container].155 *156 * The [TestCase] about to be executed is provided as the parameter.157 */158 fun beforeContainer(f: BeforeContainer) {159 register(object : BeforeContainerListener {160 override suspend fun beforeContainer(testCase: TestCase) {161 f(testCase)162 }163 })164 }165 /**166 * Registers a callback to be executed after every [TestCase]167 * with type [TestType.Container].168 *169 * The callback provides two parameters - the test case that has just completed,170 * and the [TestResult] outcome of that test.171 */172 fun afterContainer(f: AfterContainer) {173 register(object : AfterContainerListener {174 override suspend fun afterContainer(testCase: TestCase, result: TestResult) {175 f(Tuple2(testCase, result))176 }177 })178 }179 /**180 * Registers a callback to be executed before every [TestCase]181 * with type [TestType.Test].182 *183 * The [TestCase] about to be executed is provided as the parameter.184 */185 fun beforeEach(f: BeforeEach) {186 register(object : TestListener {187 override suspend fun beforeEach(testCase: TestCase) {188 f(testCase)189 }190 })191 }192 /**193 * Registers a callback to be executed after every [TestCase]194 * with type [TestType.Test].195 *196 * The callback provides two parameters - the test case that has just completed,197 * and the [TestResult] outcome of that test.198 */199 fun afterEach(f: AfterEach) {200 register(object : TestListener {201 override suspend fun afterEach(testCase: TestCase, result: TestResult) {202 f(Tuple2(testCase, result))203 }204 })205 }206 /**207 * Registers a callback to be executed before every [TestCase]208 * with type [TestType.Test] or [TestType.Container].209 *210 * The [TestCase] about to be executed is provided as the parameter.211 */212 fun beforeAny(f: BeforeAny) {213 register(object : TestListener {214 override suspend fun beforeAny(testCase: TestCase) {215 f(testCase)216 }217 })218 }219 /**220 * Registers a callback to be executed after every [TestCase]221 * with type [TestType.Container] or [TestType.Test].222 *223 * The callback provides two parameters - the test case that has just completed,224 * and the [TestResult] outcome of that test.225 */226 fun afterAny(f: AfterAny) {227 register(object : TestListener {228 override suspend fun afterAny(testCase: TestCase, result: TestResult) {229 f(Tuple2(testCase, result))230 }231 })232 }233 /**234 * Registers a callback to be executed before any tests in this spec.235 * The spec instance is provided as a parameter.236 */237 fun beforeSpec(f: BeforeSpec) {238 register(object : TestListener {239 override suspend fun beforeSpec(spec: Spec) {240 f(spec)241 }242 })...

Full Screen

Full Screen

Automation Testing Tutorials

Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.

LambdaTest Learning Hubs:

YouTube

You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.

Run Kotest automation tests on LambdaTest cloud grid

Perform automation testing on 3000+ real desktop and mobile devices online.

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful