All Samples(37755) | Call(0) | Derive(0) | Import(37755)
Python unit testing framework, based on Erich Gamma's JUnit and Kent Beck's Smalltalk testing framework. 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: (more...)
src/b/a/badger-lib-HEAD/packages/nose/functional_tests/support/package1/tests/test_example_function.py badger-lib(Download)
import example
import unittest
class TestExampleFunction_TestCase(unittest.TestCase):
def test_times_two(self):
src/m/d/mdn-lib-HEAD/packages/nose/functional_tests/support/package1/tests/test_example_function.py mdn-lib(Download)
import example
import unittest
class TestExampleFunction_TestCase(unittest.TestCase):
def test_times_two(self):
src/p/y/PySide-1.1.2/sources/shiboken/tests/samplebinding/__del___test.py PySide(Download)
# 02110-1301 USA import unittest import sample
src/p/y/PySide-1.1.2/sources/shiboken/tests/samplebinding/writableclassdict_test.py PySide(Download)
# 02110-1301 USA import unittest from sample import Point
src/p/y/PySide-1.1.2/sources/shiboken/tests/samplebinding/weakref_test.py PySide(Download)
import weakref import unittest from sample import ObjectType, PrivateDtor
src/p/y/PySide-1.1.2/sources/shiboken/tests/samplebinding/voidholder_test.py PySide(Download)
'''Test case for a class that holds a void pointer.''' import unittest from sample import VoidHolder, Point
src/p/y/PySide-1.1.2/sources/shiboken/tests/samplebinding/visibilitychange_test.py PySide(Download)
# 02110-1301 USA import unittest from sample import *
src/p/y/PySide-1.1.2/sources/shiboken/tests/samplebinding/virtualmethods_test.py PySide(Download)
import sys import unittest from sample import *
src/p/y/PySide-1.1.2/sources/shiboken/tests/samplebinding/virtualdtor_test.py PySide(Download)
import sys import unittest from sample import VirtualDtor
src/p/y/PySide-1.1.2/sources/shiboken/tests/samplebinding/useraddedctor_test.py PySide(Download)
'''Test cases for user added constructors''' import unittest from sample import *
1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 Next