當前位置: 首頁>>代碼示例>>Python>>正文


Python mockable_test_result.MockableTestResult類代碼示例

本文整理匯總了Python中mockable_test_result.MockableTestResult的典型用法代碼示例。如果您正苦於以下問題:Python MockableTestResult類的具體用法?Python MockableTestResult怎麽用?Python MockableTestResult使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了MockableTestResult類的7個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: addSuccess

 def addSuccess(self, test):
     if self.passesCount():
         MockableTestResult.addSuccess(self, test)
         self.stream.writeln( \
             "  {0}{1}{2} has expanded your awareness.{3}{4}" \
             .format(Fore.GREEN, Style.BRIGHT, test._testMethodName, \
             Fore.RESET, Style.NORMAL))
         self.pass_count += 1
開發者ID:ruzhytskyi,項目名稱:Koans,代碼行數:8,代碼來源:sensei.py

示例2: startTest

    def startTest(self, test):
        MockableTestResult.startTest(self, test)

        if helper.cls_name(test) != self.prevTestClassName:
            self.prevTestClassName = helper.cls_name(test)
            if not self.failures:
                self.stream.writeln()
                self.stream.writeln("Thinking {0}".format(helper.cls_name(test)))
開發者ID:12and1studio,項目名稱:Hackbright-Curriculum,代碼行數:8,代碼來源:sensei.py

示例3: startTest

    def startTest(self, test):
        MockableTestResult.startTest(self, test)

        if helper.cls_name(test) != self.prevTestClassName:
            self.prevTestClassName = helper.cls_name(test)
            if not self.failures:
                self.stream.writeln()
                self.stream.writeln("{0}{1}Thinking {2}".format(
                    Fore.RESET, Style.NORMAL, helper.cls_name(test)))
開發者ID:mattjmorrison,項目名稱:python_koans,代碼行數:9,代碼來源:sensei.py

示例4: startTest

    def startTest(self, test):
        MockableTestResult.startTest(self, test)

        if helper.cls_name(test) != self.prevTestClassName:
            self.prevTestClassName = helper.cls_name(test)
            if not self.failures:
                self.stream.writeln()
                self.stream.writeln("{0}{1}Learning {2}".format(Fore.RESET, Style.NORMAL, helper.cls_name(test)))
                if helper.cls_name(test) not in ["AboutAsserts", "AboutExtraCredit"]:
                    self.lesson_pass_count += 1
開發者ID:Renice-Owino,項目名稱:Python-advance-tracks,代碼行數:10,代碼來源:sensei.py

示例5: addSuccess

    def addSuccess(self, test):
        if self.passesCount():
            MockableTestResult.addSuccess(self, test)
            import re

            test_method = re.sub("test_", "", test._testMethodName)
            self.stream.writeln(
                " {0}{1} Good Job!! You have finished {2}.{3}{4}".format(
                    Fore.GREEN, Style.BRIGHT, test_method, Fore.RESET, Style.NORMAL
                )
            )
            self.pass_count += 1
開發者ID:Renice-Owino,項目名稱:Python-advance-tracks,代碼行數:12,代碼來源:sensei.py

示例6: addFailure

 def addFailure(self, test, err):
     MockableTestResult.addFailure(self, test, err)
開發者ID:ruzhytskyi,項目名稱:Koans,代碼行數:2,代碼來源:sensei.py

示例7: addSuccess

 def addSuccess(self, test):
     if self.passesCount():            
         MockableTestResult.addSuccess(self, test)
         self.stream.writeln("  {0} has expanded your awareness.".format(test._testMethodName))
         self.pass_count += 1
開發者ID:12and1studio,項目名稱:Hackbright-Curriculum,代碼行數:5,代碼來源:sensei.py


注:本文中的mockable_test_result.MockableTestResult類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。