MCPcopy Index your code
hub / github.com/python/cpython / assertIntEqual

Method assertIntEqual

Lib/test/test_math_integer.py:72–74  ·  view source on GitHub ↗
(self, actual, expected)

Source from the content-addressed store, hash-verified

70 import math.integer as module
71
72 def assertIntEqual(self, actual, expected):
73 self.assertEqual(actual, expected)
74 self.assertIs(type(actual), int)
75
76 def test_factorial(self):
77 factorial = self.module.factorial

Callers 5

test_factorialMethod · 0.95
test_gcdMethod · 0.95
test_isqrtMethod · 0.95
test_permMethod · 0.95
test_combMethod · 0.95

Calls 2

assertEqualMethod · 0.45
assertIsMethod · 0.45

Tested by

no test coverage detected