You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want to add Owner of TestCase, How to do it?
How to use Owner annotations or a funcs at AbstractContainerScope in BehaviorSpec/FunSpec and other Specs?
Example:
import io.kotest.core.spec.style.BehaviorSpec
import io.qameta.allure.Owner
class MyTest : BehaviorSpec(
{
@Owner("Mike")
Given("a list") {
@Owner("Nick")
When("call sort") {
@Owner("Alex")
Then("the list should be sorted") {
}
}
}
},
)
The text was updated successfully, but these errors were encountered:
I want to add Owner of TestCase, How to do it?
How to use Owner annotations or a funcs at AbstractContainerScope in BehaviorSpec/FunSpec and other Specs?
Example:
The text was updated successfully, but these errors were encountered: