Junit單元測(cè)試 | 注解和執(zhí)行順序

JUnit4注解基本介紹
JUnit4 中@AfterClass @BeforeClass @after @before的區(qū)別對(duì)比
junit之測(cè)試順序

1、JUnit4基本注解

@Before

When writing tests, it is common to find that several tests need similar objects created before they can run. Annotating a public void method with @Before causes that method to be run before the Test method. The @Before methods of superclasses will be run before those of the current class. No other ordering is defined.

當(dāng)編寫(xiě)測(cè)試方法時(shí)螃诅,經(jīng)常會(huì)發(fā)現(xiàn)一些方法在執(zhí)行前需要?jiǎng)?chuàng)建相同的對(duì)象因谎。使用@Before注解一個(gè)public void 方法會(huì)使該方法在每個(gè)@Test注解方法被執(zhí)行前執(zhí)行(那么就可以在該方法中創(chuàng)建相同的對(duì)象)卵佛。

父類(lèi)的@Before注解方法會(huì)在子類(lèi)的@Before注解方法執(zhí)行前執(zhí)行呻顽。

@After

If you allocate external resources in a Before method you need to release them after the test runs.Annotating a public void method with @After causes that method to be run after the Test method. All @After methods are guaranteed to run even if a Before or Test method throws an exception. The @After methods declared in superclasses will be run after those of the current class.

使用@After注解一個(gè)public void方法會(huì)使該方法在每個(gè)@Test注解方法執(zhí)行后被執(zhí)行。

如果在@Before注解方法中分配了額外的資源句葵,那么在測(cè)試執(zhí)行完后厕鹃,需要釋放分配的資源兢仰,這個(gè)釋放資源的操作可以在After中完成。

即使在@Before注解方法剂碴、@Test注解方法中拋出了異常把将,所有的@After注解方法依然會(huì)被執(zhí)行。

父類(lèi)中的@After注解方法會(huì)在子類(lèi)@After注解方法執(zhí)行后被執(zhí)行忆矛。

@Test

The Test annotation tells JUnit that the public void method to which it is attached can be run as a test case. To run the method, JUnit first constructs a fresh instance of the class then invokes the annotated method. Any exceptions thrown by the test will be reported by JUnit as a failure. If no exceptions are thrown, the test is assumed to have succeeded.

The Test annotation supports two optional parameters.

The first, expected,declares that a test method should throw an exception. If it doesn't throw an exception or if it throws a different exception than the one declared, the test fails.

The second optional parameter, timeout, causes a test to fail if it takes longer than a specified amount of clock time (measured in milliseconds).

@Test注解的public void方法將會(huì)被當(dāng)做測(cè)試用例察蹲,JUnit每次都會(huì)創(chuàng)建一個(gè)新的測(cè)試實(shí)例,然后調(diào)用@Test注解方法洪碳,任何異常的拋出都會(huì)認(rèn)為測(cè)試失敗递览。當(dāng)以一個(gè)類(lèi)為測(cè)試單元時(shí),所有測(cè)試用例(測(cè)試方法)共屬同一個(gè)測(cè)試實(shí)例(具有同一個(gè)環(huán)境)瞳腌;當(dāng)以一個(gè)方法為測(cè)試單元時(shí),JUnit每次都會(huì)創(chuàng)建一個(gè)新的測(cè)試實(shí)例镜雨。

@Test注解提供2個(gè)參數(shù):
1嫂侍,“expected”,定義測(cè)試方法應(yīng)該拋出的異常荚坞,如果測(cè)試方法沒(méi)有拋出異程舫瑁或者拋出了一個(gè)不同的異常,測(cè)試失斖怯啊各淀;
2,“timeout”诡挂,如果測(cè)試運(yùn)行時(shí)間長(zhǎng)于該定義時(shí)間碎浇,測(cè)試失敗(單位為毫秒)璃俗。

@BeforeClass

Sometimes several tests need to share computationally expensive setup (like logging into a database). While this can compromise the independence of tests, sometimes it is a necessary optimization.Annotating a public static void no-arg method with @BeforeClass causes it to be run once before any of the test methods in the class. The @BeforeClass methods of superclasses will be run before those the current class.

有些時(shí)候奴璃,一些測(cè)試需要共享代價(jià)高昂的步驟(如數(shù)據(jù)庫(kù)登錄),這會(huì)破壞測(cè)試獨(dú)立性城豁,通常是需要優(yōu)化的苟穆。

使用@BeforeClass注解一個(gè)public static void 方法,并且該方法不帶任何參數(shù)唱星,會(huì)使該方法在所有測(cè)試方法被執(zhí)行前執(zhí)行一次雳旅,并且只執(zhí)行一次。

父類(lèi)的@BeforeClass注解方法會(huì)在子類(lèi)的@BeforeClass注解方法執(zhí)行前執(zhí)行间聊。

@AfterClass

If you allocate expensive external resources in a Before Class method you need to release them after all the tests in the class have run. Annotating a public static void method with @AfterClass causes that method to be run after all the tests in the class have been run. All @AfterClass methods are guaranteed to run even if a Before Class method throws an exception.The @AfterClass methods declared in superclasses will be run after those of thecurrent class.

如果在@BeforeClass注解方法中分配了代價(jià)高昂的額外的資源攒盈,那么在測(cè)試類(lèi)中的所有測(cè)試方法執(zhí)行完后,需要釋放分配的資源甸饱。

使用@AfterClass注解一個(gè)public static void方法會(huì)使該方法在測(cè)試類(lèi)中的所有測(cè)試方法執(zhí)行完后被執(zhí)行沦童。

即使在@BeforeClass注解方法中拋出了異常仑濒,所有的@AfterClass注解方法依然會(huì)被執(zhí)行。

父類(lèi)中的@AfterClass注解方法會(huì)在子類(lèi)@AfterClass注解方法執(zhí)行后被執(zhí)行偷遗。

@Ignore

Sometimes you want to temporarily disable a test or a group of tests. Methods annotated with Test that are also annotated with @Ignore will not be executed as tests. Also, you can annotate a class containing test methods with @Ignore and none of the containing tests will be executed. Native JUnit 4 test runners should report the number of ignored tests along with the number of tests that ran and the number of tests that failed.

對(duì)包含測(cè)試類(lèi)的類(lèi)或@Test注解方法使用@Ignore注解將使被注解的類(lèi)或方法不會(huì)被當(dāng)做測(cè)試執(zhí)行墩瞳;JUnit執(zhí)行結(jié)果中會(huì)報(bào)告被忽略的測(cè)試數(shù)。

2氏豌、Junit測(cè)試順序:@FixMethodOrder

Junit 4.11里增加了指定測(cè)試方法執(zhí)行順序的特性喉酌,測(cè)試類(lèi)的執(zhí)行順序可通過(guò)對(duì)測(cè)試類(lèi)添加注解 @FixMethodOrder(value)來(lái)指定,其中value 為執(zhí)行順序 ,下面是value值下對(duì)應(yīng)的測(cè)試順序行為:

  • ** MethodSorters.DEFAULT **(默認(rèn))
    默認(rèn)順序由方法名hashcode值來(lái)決定泵喘,如果hash值大小一致泪电,則按名字的字典順序確定纪铺。
    由于hashcode的生成和操作系統(tǒng)相關(guān)(以native修飾),所以對(duì)于不同操作系統(tǒng)鲜锚,可能會(huì)出現(xiàn)不一樣的執(zhí)行順序,在某一操作系統(tǒng)上芜繁,多次執(zhí)行的順序不變 旺隙。

  • ** MethodSorters.NAME_ASCENDING (推薦) **
    按方法名稱(chēng)的進(jìn)行排序,由于是按字符的字典順序蔬捷,所以以這種方式指定執(zhí)行順序會(huì)始終保持一致榔袋;
    不過(guò)這種方式需要對(duì)測(cè)試方法有一定的命名規(guī)則周拐,如 測(cè)試方法均以testNNN開(kāi)頭(NNN表示測(cè)試方法序列號(hào) 001-999) 。

  • ** MethodSorters.JVM **
    按JVM返回的方法名的順序執(zhí)行摘昌,此種方式下測(cè)試方法的執(zhí)行順序是不可預(yù)測(cè)的速妖,即每次運(yùn)行的順序可能
    都不一樣(JDK7里尤其如此)。

3罕容、栗子

import org.junit.*;
import org.junit.runners.MethodSorters;

@FixMethodOrder(value = MethodSorters.DEFAULT)  // <<--- I will change here for testing ... 
public class MathTest {
    private static int flag = 0;

    @Test(timeout = 1000)
    public void testA(){
        System.out.println("here is testA");
        System.out.println("flag = " + flag);
        flag = 1;
        System.out.println("flag = " + flag);
    }

    @Test
    public void testB(){
        System.out.println("here is testB");
        System.out.println("flag = " + flag);
        flag = 2;
        System.out.println("flag = " + flag);
    }

    @Test
    public void testC(){
        System.out.println("here is testC");
        System.out.println("flag = " + flag);
        flag = 3;
        System.out.println("flag = " + flag);
    }

    @Before
    public void beforeEveryTest(){
        System.out.println("\n=== beforeEveryTest ===\n");
    }

    @After
    public void afterEveryTest(){
        System.out.println("\n=== afterEveryTest ===\n");
    }

    // must be static
    @BeforeClass
    public static void beforeClassTest(){
        System.out.println("\n===beforeClassTest===\n");
    }

    // must be static
    @AfterClass
    public static void afterClassTest(){
        System.out.println("\n===afterClassTest===\n");
    }

}

默認(rèn)順序

===beforeClassTest===


=== beforeEveryTest ===

here is testA
flag = 0
flag = 1

=== afterEveryTest ===


=== beforeEveryTest ===

here is testB
flag = 1
flag = 2

=== afterEveryTest ===


=== beforeEveryTest ===

here is testC
flag = 2
flag = 3

=== afterEveryTest ===


===afterClassTest===

字典順序
同上

JVM順序

===beforeClassTest===


=== beforeEveryTest ===

here is testB
flag = 0
flag = 2

=== afterEveryTest ===


=== beforeEveryTest ===

here is testA
flag = 2
flag = 1

=== afterEveryTest ===


=== beforeEveryTest ===

here is testC
flag = 1
flag = 3

=== afterEveryTest ===


===afterClassTest===
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末锦秒,一起剝皮案震驚了整個(gè)濱河市喉镰,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌侣姆,老刑警劉巖沉噩,帶你破解...
    沈念sama閱讀 211,561評(píng)論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件川蒙,死亡現(xiàn)場(chǎng)離奇詭異长已,居然都是意外死亡,警方通過(guò)查閱死者的電腦和手機(jī)术瓮,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,218評(píng)論 3 385
  • 文/潘曉璐 我一進(jìn)店門(mén)胞四,熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái),“玉大人撬讽,你說(shuō)我怎么就攤上這事。” “怎么了尝蠕?”我有些...
    開(kāi)封第一講書(shū)人閱讀 157,162評(píng)論 0 348
  • 文/不壞的土叔 我叫張陵,是天一觀的道長(zhǎng)廊佩。 經(jīng)常有香客問(wèn)我靖榕,道長(zhǎng),這世上最難降的妖魔是什么茁计? 我笑而不...
    開(kāi)封第一講書(shū)人閱讀 56,470評(píng)論 1 283
  • 正文 為了忘掉前任,我火速辦了婚禮践剂,結(jié)果婚禮上娜膘,老公的妹妹穿的比我還像新娘。我一直安慰自己竣贪,他們只是感情好巩螃,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,550評(píng)論 6 385
  • 文/花漫 我一把揭開(kāi)白布避乏。 她就那樣靜靜地躺著汗捡,像睡著了一般。 火紅的嫁衣襯著肌膚如雪扇住。 梳的紋絲不亂的頭發(fā)上,一...
    開(kāi)封第一講書(shū)人閱讀 49,806評(píng)論 1 290
  • 那天锄贼,我揣著相機(jī)與錄音女阀,去河邊找鬼。 笑死浸策,一個(gè)胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的惫确。 我是一名探鬼主播蚯舱,決...
    沈念sama閱讀 38,951評(píng)論 3 407
  • 文/蒼蘭香墨 我猛地睜開(kāi)眼,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼陈肛!你這毒婦竟也來(lái)了兄裂?” 一聲冷哼從身側(cè)響起,我...
    開(kāi)封第一講書(shū)人閱讀 37,712評(píng)論 0 266
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤前翎,失蹤者是張志新(化名)和其女友劉穎畅涂,沒(méi)想到半個(gè)月后,有當(dāng)?shù)厝嗽跇?shù)林里發(fā)現(xiàn)了一具尸體午衰,經(jīng)...
    沈念sama閱讀 44,166評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡冒萄,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,510評(píng)論 2 327
  • 正文 我和宋清朗相戀三年尊流,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了灯帮。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 38,643評(píng)論 1 340
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡迎献,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出吁恍,到底是詐尸還是另有隱情播演,我是刑警寧澤,帶...
    沈念sama閱讀 34,306評(píng)論 4 330
  • 正文 年R本政府宣布翼闽,位于F島的核電站洲炊,受9級(jí)特大地震影響肄程,放射性物質(zhì)發(fā)生泄漏选浑。R本人自食惡果不足惜玄叠,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,930評(píng)論 3 313
  • 文/蒙蒙 一读恃、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧寺惫,春花似錦、人聲如沸西雀。這莊子的主人今日做“春日...
    開(kāi)封第一講書(shū)人閱讀 30,745評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)核畴。三九已至膝但,卻和暖如春谤草,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背冀宴。 一陣腳步聲響...
    開(kāi)封第一講書(shū)人閱讀 31,983評(píng)論 1 266
  • 我被黑心中介騙來(lái)泰國(guó)打工嚎杨, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人枫浙。 一個(gè)月前我還...
    沈念sama閱讀 46,351評(píng)論 2 360
  • 正文 我出身青樓箩帚,卻偏偏與公主長(zhǎng)得像,于是被迫代替她去往敵國(guó)和親紧帕。 傳聞我的和親對(duì)象是個(gè)殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,509評(píng)論 2 348

推薦閱讀更多精彩內(nèi)容