亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? unittest.py

?? mallet是自然語言處理、機器學習領域的一個開源項目。
?? PY
?? 第 1 頁 / 共 2 頁
字號:
#!/usr/bin/env python'''Python unit testing framework, based on Erich Gamma's JUnit and Kent Beck'sSmalltalk testing framework.This module contains the core framework classes that form the basis ofspecific test cases and suites (TestCase, TestSuite etc.), and also atext-based utility class for running the tests and reporting the results (TextTestRunner).Simple usage:    import unittest    class IntegerArithmenticTestCase(unittest.TestCase):        def testAdd(self):  ## test method names begin 'test*'            self.assertEquals((1 + 2), 3)            self.assertEquals(0 + 1, 1)        def testMultiply(self):            self.assertEquals((0 * 10), 0)            self.assertEquals((5 * 8), 40)    if __name__ == '__main__':        unittest.main()Further information is available in the bundled documentation, and from  http://pyunit.sourceforge.net/Copyright (c) 1999, 2000, 2001 Steve PurcellThis module is free software, and you may redistribute it and/or modifyit under the same terms as Python itself, so long as this copyright messageand disclaimer are retained in their original form.IN NO EVENT SHALL THE AUTHOR BE LIABLE TO ANY PARTY FOR DIRECT, INDIRECT,SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OFTHIS CODE, EVEN IF THE AUTHOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCHDAMAGE.THE AUTHOR SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, BUT NOTLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR APARTICULAR PURPOSE.  THE CODE PROVIDED HEREUNDER IS ON AN "AS IS" BASIS,AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.'''__author__ = "Steve Purcell"__email__ = "stephen_purcell at yahoo dot com"__version__ = "#Revision: 1.43 $"[11:-2]import timeimport sysimport tracebackimport stringimport osimport types############################################################################### Test framework core##############################################################################class TestResult:    """Holder for test result information.    Test results are automatically managed by the TestCase and TestSuite    classes, and do not need to be explicitly manipulated by writers of tests.    Each instance holds the total number of tests run, and collections of    failures and errors that occurred among those test runs. The collections    contain tuples of (testcase, exceptioninfo), where exceptioninfo is the    formatted traceback of the error that occurred.    """    def __init__(self):        self.failures = []        self.errors = []        self.testsRun = 0        self.shouldStop = 0    def startTest(self, test):        "Called when the given test is about to be run"        self.testsRun = self.testsRun + 1    def stopTest(self, test):        "Called when the given test has been run"        pass    def addError(self, test, err):        """Called when an error has occurred. 'err' is a tuple of values as        returned by sys.exc_info().        """        self.errors.append((test, self._exc_info_to_string(err)))    def addFailure(self, test, err):        """Called when an error has occurred. 'err' is a tuple of values as        returned by sys.exc_info()."""        self.failures.append((test, self._exc_info_to_string(err)))    def addSuccess(self, test):        "Called when a test has completed successfully"        pass    def wasSuccessful(self):        "Tells whether or not this result was a success"        return len(self.failures) == len(self.errors) == 0    def stop(self):        "Indicates that the tests should be aborted"        self.shouldStop = 1    def _exc_info_to_string(self, err):        """Converts a sys.exc_info()-style tuple of values into a string."""        return string.join(apply(traceback.format_exception, err), '')    def __repr__(self):        return "<%s run=%i errors=%i failures=%i>" % \               (self.__class__, self.testsRun, len(self.errors),                len(self.failures))class TestCase:    """A class whose instances are single test cases.    By default, the test code itself should be placed in a method named    'runTest'.    If the fixture may be used for many test cases, create as    many test methods as are needed. When instantiating such a TestCase    subclass, specify in the constructor arguments the name of the test method    that the instance is to execute.    Test authors should subclass TestCase for their own tests. Construction    and deconstruction of the test's environment ('fixture') can be    implemented by overriding the 'setUp' and 'tearDown' methods respectively.    If it is necessary to override the __init__ method, the base class    __init__ method must always be called. It is important that subclasses    should not change the signature of their __init__ method, since instances    of the classes are instantiated automatically by parts of the framework    in order to be run.    """    # This attribute determines which exception will be raised when    # the instance's assertion methods fail; test methods raising this    # exception will be deemed to have 'failed' rather than 'errored'    failureException = AssertionError    def __init__(self, methodName='runTest'):        """Create an instance of the class that will use the named test           method when executed. Raises a ValueError if the instance does           not have a method with the specified name.        """        try:            self.__testMethodName = methodName            testMethod = getattr(self, methodName)            self.__testMethodDoc = testMethod.__doc__        except AttributeError:            raise ValueError, "no such test method in %s: %s" % \                  (self.__class__, methodName)    def setUp(self):        "Hook method for setting up the test fixture before exercising it."        pass    def tearDown(self):        "Hook method for deconstructing the test fixture after testing it."        pass    def countTestCases(self):        return 1    def defaultTestResult(self):        return TestResult()    def shortDescription(self):        """Returns a one-line description of the test, or None if no        description has been provided.        The default implementation of this method returns the first line of        the specified test method's docstring.        """        doc = self.__testMethodDoc        return doc and string.strip(string.split(doc, "\n")[0]) or None    def id(self):        return "%s.%s" % (self.__class__, self.__testMethodName)    def __str__(self):        return "%s (%s)" % (self.__testMethodName, self.__class__)    def __repr__(self):        return "<%s testMethod=%s>" % \               (self.__class__, self.__testMethodName)    def run(self, result=None):        return self(result)    def __call__(self, result=None):        if result is None: result = self.defaultTestResult()        result.startTest(self)        testMethod = getattr(self, self.__testMethodName)        try:            try:                self.setUp()            except KeyboardInterrupt:                raise            except:                result.addError(self, self.__exc_info())                return            ok = 0            try:                testMethod()                ok = 1            except self.failureException, e:                result.addFailure(self, self.__exc_info())            except KeyboardInterrupt:                raise            except:                result.addError(self, self.__exc_info())            try:                self.tearDown()            except KeyboardInterrupt:                raise            except:                result.addError(self, self.__exc_info())                ok = 0            if ok: result.addSuccess(self)        finally:            result.stopTest(self)    def debug(self):        """Run the test without collecting errors in a TestResult"""        self.setUp()        getattr(self, self.__testMethodName)()        self.tearDown()    def __exc_info(self):        """Return a version of sys.exc_info() with the traceback frame           minimised; usually the top level of the traceback frame is not           needed.        """        exctype, excvalue, tb = sys.exc_info()        if sys.platform[:4] == 'java': ## tracebacks look different in Jython            return (exctype, excvalue, tb)        newtb = tb.tb_next        if newtb is None:            return (exctype, excvalue, tb)        return (exctype, excvalue, newtb)    def fail(self, msg=None):        """Fail immediately, with the given message."""        raise self.failureException, msg    def failIf(self, expr, msg=None):        "Fail the test if the expression is true."        if expr: raise self.failureException, msg    def failUnless(self, expr, msg=None):        """Fail the test unless the expression is true."""        if not expr: raise self.failureException, msg    def failUnlessRaises(self, excClass, callableObj, *args, **kwargs):        """Fail unless an exception of class excClass is thrown           by callableObj when invoked with arguments args and keyword           arguments kwargs. If a different type of exception is           thrown, it will not be caught, and the test case will be           deemed to have suffered an error, exactly as for an           unexpected exception.        """        try:            apply(callableObj, args, kwargs)        except excClass:            return        else:            if hasattr(excClass,'__name__'): excName = excClass.__name__            else: excName = str(excClass)            raise self.failureException, excName    def failUnlessEqual(self, first, second, msg=None):        """Fail if the two objects are unequal as determined by the '!='           operator.        """        if first != second:            raise self.failureException, \                  (msg or '%s != %s' % (`first`, `second`))    def failIfEqual(self, first, second, msg=None):        """Fail if the two objects are equal as determined by the '=='           operator.        """        if first == second:            raise self.failureException, \                  (msg or '%s == %s' % (`first`, `second`))    assertEqual = assertEquals = failUnlessEqual    assertNotEqual = assertNotEquals = failIfEqual    assertRaises = failUnlessRaises    assert_ = failUnlessclass TestSuite:    """A test suite is a composite test consisting of a number of TestCases.    For use, create an instance of TestSuite, then add test case instances.    When all tests have been added, the suite can be passed to a test    runner, such as TextTestRunner. It will run the individual test cases    in the order in which they were added, aggregating the results. When    subclassing, do not forget to call the base class constructor.    """    def __init__(self, tests=()):        self._tests = []        self.addTests(tests)    def __repr__(self):        return "<%s tests=%s>" % (self.__class__, self._tests)    __str__ = __repr__    def countTestCases(self):        cases = 0        for test in self._tests:            cases = cases + test.countTestCases()        return cases    def addTest(self, test):        self._tests.append(test)    def addTests(self, tests):        for test in tests:            self.addTest(test)    def run(self, result):        return self(result)    def __call__(self, result):        for test in self._tests:            if result.shouldStop:                break            test(result)        return result    def debug(self):        """Run the tests without collecting errors in a TestResult"""        for test in self._tests: test.debug()class FunctionTestCase(TestCase):    """A test case that wraps a test function.    This is useful for slipping pre-existing test functions into the    PyUnit framework. Optionally, set-up and tidy-up functions can be    supplied. As with TestCase, the tidy-up ('tearDown') function will    always be called if the set-up ('setUp') function ran successfully.    """    def __init__(self, testFunc, setUp=None, tearDown=None,

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产欧美一区二区三区鸳鸯浴| 欧美视频精品在线| 欧美性生活久久| 欧美一区午夜视频在线观看| 久久久777精品电影网影网 | 久久国产麻豆精品| 国产成人精品在线看| 91麻豆视频网站| 91精品国产高清一区二区三区 | 91欧美一区二区| 91精品国产欧美一区二区| 国产日韩精品一区| 亚洲福中文字幕伊人影院| 国产一区二区精品久久99| 在线观看欧美黄色| 久久久亚洲午夜电影| 午夜视频在线观看一区二区三区| 精品一区二区免费| 欧美日韩综合色| 国产精品伦理一区二区| 日韩激情一区二区| 91色综合久久久久婷婷| 精品国产91乱码一区二区三区| 亚洲精品五月天| 国产精品888| 91精品国产高清一区二区三区| 亚洲国产岛国毛片在线| 毛片基地黄久久久久久天堂| 91免费看`日韩一区二区| 2024国产精品| 丝袜美腿亚洲色图| 色噜噜狠狠成人中文综合 | 99久久夜色精品国产网站| 日韩欧美国产成人一区二区| 亚洲女同ⅹxx女同tv| 国产高清一区日本| 欧美一区二区在线播放| 亚洲一区欧美一区| 成人av在线观| 久久久九九九九| 久久精品国产99久久6| 欧美日韩黄视频| 亚洲人成精品久久久久| 成人午夜精品一区二区三区| 精品99一区二区三区| 丝袜美腿成人在线| 欧美视频精品在线| 一区二区三区资源| 99久久伊人久久99| 久久久国产午夜精品| 久久精品噜噜噜成人88aⅴ | 久草精品在线观看| 91精品国产综合久久小美女| 亚洲狠狠爱一区二区三区| 一本色道久久综合亚洲aⅴ蜜桃| 国产亚洲成年网址在线观看| 国产专区综合网| 欧美不卡一二三| 久久精品久久综合| 精品日韩一区二区三区| 日本不卡高清视频| 欧美一区二区三区视频免费| 日韩精品电影在线| 日韩一区二区在线免费观看| 青娱乐精品在线视频| 日韩一区二区在线观看视频| 日韩国产在线一| 欧美一级爆毛片| 九一九一国产精品| 久久伊人蜜桃av一区二区| 激情六月婷婷综合| 精品国产乱码久久久久久图片| 开心九九激情九九欧美日韩精美视频电影| 制服丝袜亚洲播放| 久久国产精品色婷婷| 精品国产乱码久久| 国产精品一二三四| 国产精品久久久久影视| 91麻豆免费看| 亚洲成人av福利| 欧美一级在线观看| 激情小说亚洲一区| 中文字幕第一页久久| 91亚洲午夜精品久久久久久| 一级日本不卡的影视| 欧美日韩午夜在线| 久久精品久久综合| 欧美激情在线看| 91免费版在线看| 午夜一区二区三区在线观看| 欧美一二三在线| 国产精品99久久久久久久vr| 最近中文字幕一区二区三区| 欧美日韩性生活| 久久99精品久久久久| 日本一区二区免费在线观看视频| 成人激情动漫在线观看| 亚洲综合自拍偷拍| 欧美电影免费观看完整版| 国产超碰在线一区| 亚洲精品视频一区| 欧美一区二区播放| 国产不卡视频一区| 亚洲香肠在线观看| 亚洲精品一区二区三区99| 波多野结衣精品在线| 偷窥少妇高潮呻吟av久久免费| 精品欧美久久久| 91丨porny丨中文| 蜜臀av亚洲一区中文字幕| 国产欧美一区二区三区在线老狼| 色94色欧美sute亚洲线路一久| 三级在线观看一区二区| 欧美高清在线视频| 欧美日韩精品三区| 国产成人免费视频网站高清观看视频| 亚洲欧美色图小说| 日韩免费一区二区| 91美女在线看| 国产在线不卡一区| 亚洲午夜成aⅴ人片| 国产午夜精品久久| 欧美久久一区二区| 99久久99久久精品国产片果冻| 日韩va亚洲va欧美va久久| 国产精品国产三级国产普通话99| 欧美精品日韩一本| 91在线观看地址| 激情深爱一区二区| 亚洲成人精品一区| 国产精品久久久久影视| 日韩精品一区二区三区视频在线观看 | 99国产精品一区| 精品一二线国产| 亚洲一区二区成人在线观看| www久久久久| 欧美精品丝袜中出| 一本一本久久a久久精品综合麻豆 一本一道波多野结衣一区二区 | 国产一区不卡在线| 亚洲国产一区二区三区| 中文字幕成人在线观看| 日韩女优电影在线观看| 欧美色视频在线| 91在线视频网址| 狠狠色丁香九九婷婷综合五月| 亚洲一区二区三区三| 中文字幕在线观看一区| 精品成人佐山爱一区二区| 欧美视频一区在线| 97se亚洲国产综合在线| 国产成人欧美日韩在线电影| 美女网站色91| 日日夜夜免费精品| 亚洲国产cao| 亚洲综合小说图片| 成人欧美一区二区三区黑人麻豆| 久久亚区不卡日本| 日韩精品中午字幕| 欧美一卡二卡在线观看| 精品视频免费看| 色伊人久久综合中文字幕| 成人免费视频一区| 国产麻豆精品theporn| 麻豆精品国产91久久久久久| 亚洲成人av福利| 亚洲不卡av一区二区三区| 亚洲精品乱码久久久久| 一区免费观看视频| √…a在线天堂一区| 国产精品久久久久精k8| 国产精品美女久久久久aⅴ国产馆 国产精品美女久久久久av爽李琼 国产精品美女久久久久高潮 | 国产成人精品1024| 国产精品一品视频| 国产精品夜夜爽| 国产原创一区二区| 国产中文字幕精品| 韩国女主播一区| 国产精品亚洲成人| 成人性生交大片免费看中文| 国产69精品久久777的优势| 国产一区不卡视频| 国产精品一区二区免费不卡 | 中文字幕欧美三区| 国产欧美精品一区二区色综合| 国产亚洲欧美激情| 亚洲国产成人一区二区三区| 国产精品美女久久久久aⅴ| 国产精品色噜噜| 亚洲日本一区二区三区| 亚洲欧美偷拍另类a∨色屁股| 一区二区三区国产精华| 亚洲国产精品尤物yw在线观看| 午夜亚洲国产au精品一区二区| 日韩精品五月天| 极品少妇一区二区| 国产成人自拍网| 91网站在线观看视频| 日韩三级高清在线| 26uuu色噜噜精品一区二区| 亚洲国产精品成人综合|