mirror of
https://github.com/donnemartin/interactive-coding-challenges.git
synced 2024-03-22 13:11:13 +08:00
23 lines
540 B
Python
23 lines
540 B
Python
|
from nose.tools import assert_equal, assert_raises
|
||
|
|
||
|
|
||
|
class TestTwoSum(object):
|
||
|
|
||
|
def test_two_sum(self):
|
||
|
solution = Solution()
|
||
|
assert_raises(TypeError, solution.two_sum, None, None)
|
||
|
assert_raises(ValueError, solution.two_sum, [], 0)
|
||
|
target = 7
|
||
|
nums = [1, 3, 2, -7, 5]
|
||
|
expected = [2, 4]
|
||
|
assert_equal(solution.two_sum(nums, target), expected)
|
||
|
print('Success: test_two_sum')
|
||
|
|
||
|
|
||
|
def main():
|
||
|
test = TestTwoSum()
|
||
|
test.test_two_sum()
|
||
|
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
main()
|