summaryrefslogtreecommitdiff
path: root/python/helpers/pydev/tests_runfiles/samples/simple3_test.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/helpers/pydev/tests_runfiles/samples/simple3_test.py')
-rw-r--r--python/helpers/pydev/tests_runfiles/samples/simple3_test.py16
1 files changed, 16 insertions, 0 deletions
diff --git a/python/helpers/pydev/tests_runfiles/samples/simple3_test.py b/python/helpers/pydev/tests_runfiles/samples/simple3_test.py
new file mode 100644
index 000000000000..da1ccbfba1e0
--- /dev/null
+++ b/python/helpers/pydev/tests_runfiles/samples/simple3_test.py
@@ -0,0 +1,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()