mirror of
https://github.com/donnemartin/interactive-coding-challenges.git
synced 2024-03-22 13:11:13 +08:00
21 lines
559 B
Python
21 lines
559 B
Python
from nose.tools import assert_equal, assert_raises
|
|
|
|
|
|
class TestProdThree(object):
|
|
|
|
def test_prod_three(self):
|
|
solution = Solution()
|
|
assert_raises(TypeError, solution.max_prod_three, None)
|
|
assert_raises(ValueError, solution.max_prod_three, [1, 2])
|
|
assert_equal(solution.max_prod_three([5, -2, 3]), -30)
|
|
assert_equal(solution.max_prod_three([5, -2, 3, 1, -1, 4]), 60)
|
|
print('Success: test_prod_three')
|
|
|
|
|
|
def main():
|
|
test = TestProdThree()
|
|
test.test_prod_three()
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main() |