學習TDD同時學到Python

來源:互聯網
上載者:User
TDD用了xUnit的實現來舉例,也同時讓我感受了下動態語言(樂觀語言)的魅力,僅僅帖點代碼來:class TestCase:
    def __init__(self,name):
        self.name = name
    def setUp(pass):
        pass
    def tearDown(self):
        pass
    def run(self,result):
        result.testStart()
        self.setUp()
        method = getattr(self,self.name)
        method()
        self.tearDown

        
class WasRun(TestCase):
    def __init__(self,name):
        self.wasRun = None
        TestCase.__init__(self,name)
    def run(self):
        self.testMethod()
    def testMethod(self):
        self.setUp()
        self.wasRun = 1
    def setUp(self):
                self.wasRun = None
        self.wasSetup=1

class TestCaseTest(TestCase):
    def testRunning(self):
        test1 = WasRun("testMethod")
                test2 = WasRun("setUp")
                print test2.wasSetUp
        assert(test.wasSetUp)
        assert(not test.wasRun)
        test.setUp()
        test.run()
        print test2.wasSetUp
        assert(test.wasRun)
    TestCaseTest("testRunning").run()

>>> class A:
    def __init__(self):
        self.tests = []
    def add(self,test):
        self.tests.append(test)

    
>>> class test:
    def __init__(self,name):
        self.name = name
    def run(self):
        print self.name

        
>>> class MainClass:
    def __init__(self):
        pass
    def runTest(self):
        t = test("chenfei")
        t1 = test("lfchen")
        t2 = test("qixiang")
        t3 = test("zhao")
        a = A()
        a.add(t)
        a.add(t1)
        a.add(t2)
        a.add(t3)
        for tt in a.tests:
            tt.run()

            
>>> MainClass().runTest()

感覺還真不錯!

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.