Linux cpanel.rrshost.in 5.15.0-25-generic #25-Ubuntu SMP Wed Mar 30 15:54:22 UTC 2022 x86_64
Apache
: 109.123.238.221 | : 172.70.100.159
128 Domain
8.2.28
aev999
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
lib /
python3.10 /
unittest /
__pycache__ /
[ HOME SHELL ]
Name
Size
Permission
Action
__init__.cpython-310.pyc
3.32
KB
-rw-r--r--
__main__.cpython-310.pyc
402
B
-rw-r--r--
_log.cpython-310.pyc
2.63
KB
-rw-r--r--
async_case.cpython-310.pyc
4.63
KB
-rw-r--r--
case.cpython-310.pyc
47.35
KB
-rw-r--r--
loader.cpython-310.pyc
14.09
KB
-rw-r--r--
main.cpython-310.pyc
7.38
KB
-rw-r--r--
mock.cpython-310.pyc
77.94
KB
-rw-r--r--
result.cpython-310.pyc
7.85
KB
-rw-r--r--
runner.cpython-310.pyc
6.79
KB
-rw-r--r--
signals.cpython-310.pyc
2.2
KB
-rw-r--r--
suite.cpython-310.pyc
10.03
KB
-rw-r--r--
util.cpython-310.pyc
4.43
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : __init__.cpython-310.pyc
o }�5h� � @ s� d Z g d�Ze�g d�� dZddlmZ ddlmZmZm Z m Z mZmZm Z mZ ddlmZmZ ddlmZmZmZmZmZ dd lmZmZ dd lmZmZ ddlmZmZm Z m!Z! eZ"dd � Z#dd� Z$dd� Z%dS )a� Python unit testing framework, based on Erich Gamma's JUnit and Kent Beck's Smalltalk testing framework (used with permission). This module contains the core framework classes that form the basis of specific test cases and suites (TestCase, TestSuite etc.), and also a text-based utility class for running the tests and reporting the results (TextTestRunner). Simple usage: import unittest class IntegerArithmeticTestCase(unittest.TestCase): def testAdd(self): # test method names begin with 'test' self.assertEqual((1 + 2), 3) self.assertEqual(0 + 1, 1) def testMultiply(self): self.assertEqual((0 * 10), 0) self.assertEqual((5 * 8), 40) if __name__ == '__main__': unittest.main() Further information is available in the bundled documentation, and from http://docs.python.org/library/unittest.html Copyright (c) 1999-2003 Steve Purcell Copyright (c) 2003-2010 Python Software Foundation This module is free software, and you may redistribute it and/or modify it under the same terms as Python itself, so long as this copyright message and 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 OF THIS CODE, EVEN IF THE AUTHOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. THE AUTHOR SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 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. )� TestResult�TestCase�IsolatedAsyncioTestCase� TestSuite�TextTestRunner� TestLoader�FunctionTestCase�main�defaultTestLoader�SkipTest�skip�skipIf� skipUnless�expectedFailure�TextTestResult�installHandler�registerResult�removeResult� removeHandler�addModuleCleanup)�getTestCaseNames� makeSuite� findTestCasesT� )r )r r r r r r r r )� BaseTestSuiter )r r r r r )�TestProgramr )r r )r r r r c C s"