zoukankan      html  css  js  c++  java
  • selenium2学习:单元测试框架(4):Fixtures

    1.1     Fixtures

    夹心饼干外层的两片饼干,即:setUp和tearDown,中间是测试用例。除此之外,unittest还提供了更大范围的fixtures,例如:对于测试类和模块的fixtures。

    # 0518001:fixtures
    
    import unittest  
      
    def setUpModule():  
        print("test module start>>>>>>>>>>>")  
    def tearDownModule():  
        print("test module end>>>>>>>>>>>>>")  
      
    class Test(unittest.TestCase):  
        @classmethod
        def setUpClass(cls):  
            print("test class start ========>")  
        @classmethod  
        def tearDownClass(cls):  
            print("test class end ========>")  
        def setUp(self):  
            print("test case start -->")  
          
        def tearDown(self):  
            print("test case end-->")  
        def test_case(self):  
            print("test case1")  
        def test_case2(self):  
            print("test case2")  
      
    if __name__=='__main__':  
        unittest.main()  

    执行结果

    >>> 
     RESTART: C:/Users/tians/AppData/Local/Programs/Python/Python36/example-JLL/test_0518001:fixtures.py 
    test module start>>>>>>>>>>>
    test class start ========>
    test case start -->
    test case1
    test case end-->
    .test case start -->
    test case2
    test case end-->
    .test class end ========>
    test module end>>>>>>>>>>>>>
    
    ----------------------------------------------------------------------
    Ran 2 tests in 0.217s
    
    OK
    >>> 

    setUpModule/tearDownModule :在整个模块的开始与结束时被执行。

    setUpClass/tearDownClass: 在测试类的开始与结束时被执行。

    setUp/tearDown:在测试用例的开始与结束时被执行。

    注:setUpClass/tearDownClass首先需要使用@classmethod进行装饰,其次方法的参数为cls。

     
     
  • 相关阅读:
    [BZOJ 2820]YY的GCD
    [POI 2007]ZAP-Queries
    [USACO 04OPEN]MooFest
    [HAOI 2011]Problem b
    [COGS 2258][HZOI 2015]复仇的序幕曲
    [UOJ 41]【清华集训2014】矩阵变换
    [POJ 3487]The Stable Marriage Problem
    [POJ 3252]Round Numbers
    [COGS 1799][国家集训队2012]tree(伍一鸣)
    [SDOI 2011]计算器
  • 原文地址:https://www.cnblogs.com/jxba/p/9054251.html
Copyright © 2011-2022 走看看