def test_findLargestPath_2_1074(self): x = tree_2 expectedValue = 1074 actualValue = Problem018.findLargestPath(x) self.assertEqual(expectedValue, actualValue)
def test_findLargestPath_1_23(self): x = tree_1 expectedValue = 23 actualValue = Problem018.findLargestPath(x) self.assertEqual(expectedValue, actualValue)