summaryrefslogtreecommitdiff
path: root/python/helpers/pydev/tests_runfiles/samples/simple2_test.py
blob: d46468ede256cf696a5747164c446b0aafb88320 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import unittest

class YetAnotherSampleTest(unittest.TestCase):
    
    def setUp(self):
        return

    def tearDown(self):
        return

    def test_abc(self):
        pass


if __name__ == '__main__':
    unittest.main()