13 lines
197 B
Python
13 lines
197 B
Python
__author__ = 'stubbfel'
|
|
|
|
import unittest
|
|
|
|
|
|
class MyTestCase(unittest.TestCase):
|
|
def test_something(self):
|
|
self.assertEqual(True, False)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|