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

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

    def tearDown(self):
        return

    def test_non_unique_name(self):
        pass


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