application.SpecmaticBeans.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of specmatic-executable Show documentation
Show all versions of specmatic-executable Show documentation
Command-line standalone executable jar for Specmatic
package application
import org.junit.platform.launcher.Launcher
import org.junit.platform.launcher.core.LauncherFactory
import org.springframework.context.annotation.Bean
import org.springframework.context.annotation.Configuration
@Configuration
open class SpecmaticBeans {
@Bean
open fun junitLauncher(): Launcher = LauncherFactory.create()
}