org.jetbrains.spek.subject.SubjectSpek.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spek-subject-extension Show documentation
Show all versions of spek-subject-extension Show documentation
A Specification Framework for the JVM
package org.jetbrains.spek.subject
import org.jetbrains.spek.api.Spek
import org.jetbrains.spek.meta.Experimental
import org.jetbrains.spek.subject.core.SubjectProviderDslImpl
import org.jetbrains.spek.subject.dsl.SubjectProviderDsl
/**
* @author Ranie Jade Ramiso
*/
@Experimental
abstract class SubjectSpek(val subjectSpec: SubjectProviderDsl.() -> Unit): Spek({
subjectSpec.invoke(SubjectProviderDslImpl(this))
})
© 2015 - 2024 Weber Informatics LLC | Privacy Policy