org.jetbrains.spek.engine.SpekExecutionContext.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spek-junit-platform-engine Show documentation
Show all versions of spek-junit-platform-engine Show documentation
Spek TestEngine for the JUnit Platform
package org.jetbrains.spek.engine
import org.junit.platform.engine.EngineExecutionListener
import org.junit.platform.engine.ExecutionRequest
import org.junit.platform.engine.support.hierarchical.EngineExecutionContext
/**
* @author Ranie Jade Ramiso
*/
class SpekExecutionContext(val executionRequest: ExecutionRequest): EngineExecutionContext {
val engineExecutionListener: EngineExecutionListener
get() = executionRequest.engineExecutionListener
}