intranet/test/stubs/unittest/result.pyi

Summary

Maintainability
Test Coverage
# Stubs for unittest.result (Python 3.5)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.

from typing import Any

def failfast(method): ...

STDOUT_LINE = ...  # type: Any
STDERR_LINE = ...  # type: Any

class TestResult:
    failfast = ...  # type: Any
    failures = ...  # type: Any
    errors = ...  # type: Any
    testsRun = ...  # type: Any
    skipped = ...  # type: Any
    expectedFailures = ...  # type: Any
    unexpectedSuccesses = ...  # type: Any
    shouldStop = ...  # type: Any
    buffer = ...  # type: Any
    tb_locals = ...  # type: Any
    def __init__(self, stream=None, descriptions=None, verbosity=None): ...
    def printErrors(self): ...
    def startTest(self, test): ...
    def startTestRun(self): ...
    def stopTest(self, test): ...
    def stopTestRun(self): ...
    def addError(self, test, err): ...
    def addFailure(self, test, err): ...
    def addSubTest(self, test, subtest, err): ...
    def addSuccess(self, test): ...
    def addSkip(self, test, reason): ...
    def addExpectedFailure(self, test, err): ...
    def addUnexpectedSuccess(self, test): ...
    def wasSuccessful(self): ...
    def stop(self): ...