Angular jasmine单元测试框架里使用it函数定义single spec
生活随笔
收集整理的這篇文章主要介紹了
Angular jasmine单元测试框架里使用it函数定义single spec
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
it函數接收兩個參數,描述信息和包含了待測試的單元測試代碼的函數:
/*** Define a single spec. A spec should contain one or more {@link expect|expectations} that test the state of the code.** A spec whose expectations all succeed will be passing and a spec with any failures will fail.* The name `it` is a pronoun for the test target, not an abbreviation of anything. It makes the* spec more readable by connecting the function name `it` and the argument `description` as a* complete sentence.* @name it* @since 1.3.0* @function* @global* @param {String} description Textual description of what this spec is checking* @param {implementationCallback} [testFunction] Function that contains the code of your test. If not provided the test will be `pending`.* @param {Int} [timeout={@link jasmine.DEFAULT_TIMEOUT_INTERVAL}] Custom timeout for an async spec.* @see async*/it: function() {return env.it.apply(env, arguments);},這里能看到其實還有第三個可選參數,timeout即超時時間。
jasmineEnv變量是個巨大的對象,包含了很多jasmine測試方法的實現:
這個it方法里,也包含了將待測試代碼通過wrapTestInZone放入Zone里執行:
it函數調用SpecFactory創建一個spec實例出來,然后返回:
注意,此時只是將it函數傳入的待測試代碼即箭頭函數,包裹成jasmine test spec,但還未真正開始執行。
箭頭函數真正的執行還是在Zone里:
更多Jerry的原創文章,盡在:“汪子熙”:
總結
以上是生活随笔為你收集整理的Angular jasmine单元测试框架里使用it函数定义single spec的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 笔记本我的电脑怎么调出来(出差办公笔记本
- 下一篇: Angular jasmine单元测试框