DUMPTestFixture

class sknano.testing.DUMPTestFixture(methodName='runTest')[source] [edit on github][source]

Bases: sknano.testing.IOTestFixture

Mixin TestCase class for DUMPData unit tests.

Attributes

data_reader DATAReader instance.
datadata DATAData instance.
dump_reader DUMPReader instance.
dumpdata DUMPData instance.
pdb_reader PDBReader instance.
pdbdata PDBData instance.
xyz_reader XYZReader instance.
xyzdata XYZData instance.

Methods

__call__(*args, **kwds)
addCleanup(function, *args, **kwargs) Add a function, with arguments, to be called when the test is completed.
addTypeEqualityFunc(typeobj, function) Add a type specific assertEqual style function to compare a type.
assertAlmostEqual(first, second[, places, ...]) Fail if the two objects are unequal as determined by their difference rounded to the given number of decimal places (default 7) and comparing to zero, or by comparing that the between the two objects is more than the given delta.
assertAlmostEquals(*args, **kwargs)
assertCountEqual(first, second[, msg]) An unordered sequence comparison asserting that the same elements, regardless of order.
assertDictContainsSubset(subset, dictionary) Checks whether dictionary is a superset of subset.
assertDictEqual(d1, d2[, msg])
assertEqual(first, second[, msg]) Fail if the two objects are unequal as determined by the ‘==’ operator.
assertEquals(*args, **kwargs)
assertFalse(expr[, msg]) Check that the expression is false.
assertGreater(a, b[, msg]) Just like self.assertTrue(a > b), but with a nicer default message.
assertGreaterEqual(a, b[, msg]) Just like self.assertTrue(a >= b), but with a nicer default message.
assertIn(member, container[, msg]) Just like self.assertTrue(a in b), but with a nicer default message.
assertIs(expr1, expr2[, msg]) Just like self.assertTrue(a is b), but with a nicer default message.
assertIsInstance(obj, cls[, msg]) Same as self.assertTrue(isinstance(obj, cls)), with a nicer default message.
assertIsNone(obj[, msg]) Same as self.assertTrue(obj is None), with a nicer default message.
assertIsNot(expr1, expr2[, msg]) Just like self.assertTrue(a is not b), but with a nicer default message.
assertIsNotNone(obj[, msg]) Included for symmetry with assertIsNone.
assertLess(a, b[, msg]) Just like self.assertTrue(a < b), but with a nicer default message.
assertLessEqual(a, b[, msg]) Just like self.assertTrue(a <= b), but with a nicer default message.
assertListEqual(list1, list2[, msg]) A list-specific equality assertion.
assertLogs([logger, level]) Fail unless a log message of level level or higher is emitted on logger_name or its children.
assertMultiLineEqual(first, second[, msg]) Assert that two multi-line strings are equal.
assertNotAlmostEqual(first, second[, ...]) Fail if the two objects are equal as determined by their difference rounded to the given number of decimal places (default 7) and comparing to zero, or by comparing that the between the two objects is less than the given delta.
assertNotAlmostEquals(*args, **kwargs)
assertNotEqual(first, second[, msg]) Fail if the two objects are equal as determined by the ‘!=’ operator.
assertNotEquals(*args, **kwargs)
assertNotIn(member, container[, msg]) Just like self.assertTrue(a not in b), but with a nicer default message.
assertNotIsInstance(obj, cls[, msg]) Included for symmetry with assertIsInstance.
assertNotRegex(text, unexpected_regex[, msg]) Fail the test if the text matches the regular expression.
assertNotRegexpMatches(*args, **kwargs)
assertRaises(expected_exception, *args, **kwargs) Fail unless an exception of class expected_exception is raised by the callable when invoked with specified positional and keyword arguments.
assertRaisesRegex(expected_exception, ...) Asserts that the message in a raised exception matches a regex.
assertRaisesRegexp(*args, **kwargs)
assertRegex(text, expected_regex[, msg]) Fail the test unless the text matches the regular expression.
assertRegexpMatches(*args, **kwargs)
assertSequenceEqual(seq1, seq2[, msg, seq_type]) An equality assertion for ordered sequences (like lists and tuples).
assertSetEqual(set1, set2[, msg]) A set-specific equality assertion.
assertTrue(expr[, msg]) Check that the expression is true.
assertTupleEqual(tuple1, tuple2[, msg]) A tuple-specific equality assertion.
assertWarns(expected_warning, *args, **kwargs) Fail unless a warning of class warnClass is triggered by the callable when invoked with specified positional and keyword arguments.
assertWarnsRegex(expected_warning, ...) Asserts that the message in a triggered warning matches a regexp.
assert_(*args, **kwargs)
countTestCases()
debug() Run the test without collecting errors in a TestResult
defaultTestResult()
doCleanups() Execute all cleanup functions.
fail([msg]) Fail immediately, with the given message.
failIf(*args, **kwargs)
failIfAlmostEqual(*args, **kwargs)
failIfEqual(*args, **kwargs)
failUnless(*args, **kwargs)
failUnlessAlmostEqual(*args, **kwargs)
failUnlessEqual(*args, **kwargs)
failUnlessRaises(*args, **kwargs)
failureException alias of AssertionError
id()
print_dumpattrs(dump) Print dump attributes.
run([result])
setUp() Initialize list for names of temporary files.
setUpClass() Hook method for setting up class fixture before running tests in the class.
shortDescription() Returns a one-line description of the test, or None if no description has been provided.
skipTest(reason) Skip this test.
subTest([msg]) Return a context manager that will return the enclosed block of code in a subtest identified by the optional message and keyword parameters.
tearDown() Remove files in tmpdata.
tearDownClass() Hook method for deconstructing the class fixture after running all tests in the class.

Methods Summary

print_dumpattrs(dump) Print dump attributes.

Methods Documentation

print_dumpattrs(dump)[source] [edit on github][source]

Print dump attributes.