測試分組

2020-07-24 16:07 更新

JUnit和TestNG允許為測試方法精密分組.

對(duì)于分組JUnit的測試類與測試方法,JUnit4.8引入了類別的概念.9該測試任務(wù)允許您設(shè)定JUnit包括或者排除某些類的規(guī)范。

例22.12.JUnit分類 build.gradle

test {
    useJUnit {
        includeCategories 'org.gradle.junit.CategoryA'
        excludeCategories 'org.gradle.junit.CategoryB'
    }
}

TestNG的框架有一個(gè)非常類似的概念。在TestNG的,你可以指定不同的測試組。 [10]測試分組應(yīng)包括或排除在測試任務(wù)進(jìn)行配置了的測試執(zhí)行.

例22.13.TestNG分組測試 build.gradle

test {
    useTestNG {
        excludeGroups 'integrationTests'
        includeGroups 'unitTests'
    }
}


以上內(nèi)容是否對(duì)您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)