interactive-coding-challenges/recursion_dynamic/longest_substring/test_longest_common_substr.py

24 lines
639 B
Python
Raw Normal View History

import unittest
2017-03-28 17:00:23 +08:00
class TestLongestCommonSubstr(unittest.TestCase):
2017-03-28 17:00:23 +08:00
def test_longest_common_substr(self):
str_comp = StringCompare()
self.assertRaises(TypeError, str_comp.longest_common_substr, None, None)
self.assertEqual(str_comp.longest_common_substr('', ''), '')
2017-03-28 17:00:23 +08:00
str0 = 'ABCDEFGHIJ'
str1 = 'FOOBCDBCDE'
expected = 'BCDE'
self.assertEqual(str_comp.longest_common_substr(str0, str1), expected)
2017-03-28 17:00:23 +08:00
print('Success: test_longest_common_substr')
def main():
test = TestLongestCommonSubstr()
test.test_longest_common_substr()
if __name__ == '__main__':
main()