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

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

    def tearDown(self):
        return

    def test_non_unique_name(self):
        pass


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