微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

如何在 BehaviorSpec 中创建可重用的步骤

如何解决如何在 BehaviorSpec 中创建可重用的步骤

我还是 Kotlin 和 Kotest 的新手,我正在努力寻找一种方法来创建 BDD 风格的测试。我的问题是该框架如何能够创建可重用的 Given 步骤。 例如:

class KotestTest1 : BehaviorSpec({
    given("State A") {
        // Verify the State A exists
        println("Verify the State A exists")
        `when`("Action A") {
            // Execute Action A
            println("Execute Action A")
            then("State => A1") {
                // Verify the state is Now A1
                println("Verify the state is Now A1")
            }
        }
    }
})


class KotestTest2 : BehaviorSpec({
    given("State A") {
        // Verify the State A exists
        println("Verify the State A exists")
        `when`("Action B") {
            // Execute Action B
            println("Execute Action B")
            then("State => B1") {
                // Verify the state is Now B1
                println("Verify the state is Now B1")
            }
        }
    }
})

所以这里我有给定步骤“状态 A”的代码重复。我想知道如何创建整个步骤的预期方式。看起来 given(description: String) 是我必须重复的内容,对于 println("Verify the State A exists") 我只是将其提取为通用函数

我希望我可以更好地构建我的代码,以便我可以创建 Given 步骤并在多个测试场景中使用它们。对此有什么建议吗?

解决方法

我认为最常用的方法是将两个测试合并为一个,并在其中嵌套测试:

class KotestTest : BehaviorSpec({
    Given("State A") {
        When("Action A") {
            Then("State => A1") {

            }
        }
        When("Action B") {
            Then("State => B1") {
                
            }
        }
    }
})

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。