def test_other_end11(self): self.assertEqual(other_end('Hiabc', 'abcd'), False)
def test_other_end12(self): self.assertEqual(other_end('yz', '12xz'), False)
def test_other_end9(self): self.assertEqual(other_end('abcXYZ', 'abcDEF'), False)
def test_other_end10(self): self.assertEqual(other_end('ab', 'ab12'), False)
def test_other_end7(self): self.assertEqual(other_end('ab', '12ab'), True)
def test_other_end8(self): self.assertEqual(other_end('Hiabcx', 'bc'), False)
def test_other_end6(self): self.assertEqual(other_end('abc', 'abc'), True)
def test_other_end5(self): self.assertEqual(other_end('12', '12'), True)
def test_other_end4(self): self.assertEqual(other_end('Z', 'z'), True)
def test_other_end3(self): self.assertEqual(other_end('Hiabc', 'BC'), True)
def test_other_end2(self): self.assertEqual(other_end('AbC', 'HiaBc'), True)