0

有没有办法在规范中按顺序运行测试?

@Stepwise
class TestSpec extends GebReportingSpec {

    def 'A'(){
        //
    }

    def 'B'(){
        //
    }

    def 'C'(){
        //
    }

}

有没有办法可以强制 A 在 B 之前运行而 B 在 C 之前运行?

谢谢,Shravanthi

4

1 回答 1

0

它应该按此顺序运行,但使用@Stepwise,您将保持功能之间的会话。

于 2013-06-01T06:09:36.113 回答