mirror of https://github.com/avast/PurpleDome
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
677 B
Python
31 lines
677 B
Python
import unittest
|
|
|
|
# https://docs.python.org/3/library/unittest.html
|
|
|
|
|
|
class TestExample2(unittest.TestCase):
|
|
|
|
def setUp(self) -> None:
|
|
pass
|
|
|
|
def tearDown(self) -> None:
|
|
pass
|
|
|
|
def test_upper(self):
|
|
self.assertEqual('foo'.upper(), 'FOO')
|
|
|
|
def test_isupper(self):
|
|
self.assertTrue('FOO'.isupper())
|
|
self.assertFalse('Foo'.isupper())
|
|
|
|
def test_split(self):
|
|
s = 'hello world'
|
|
self.assertEqual(s.split(), ['hello', 'world'])
|
|
# check that s.split fails when the separator is not a string
|
|
with self.assertRaises(TypeError):
|
|
s.split(2)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|