summaryrefslogtreecommitdiff
path: root/python/helpers/pydev/tests_runfiles/samples/simpleClass_test.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/helpers/pydev/tests_runfiles/samples/simpleClass_test.py')
-rw-r--r--python/helpers/pydev/tests_runfiles/samples/simpleClass_test.py14
1 files changed, 14 insertions, 0 deletions
diff --git a/python/helpers/pydev/tests_runfiles/samples/simpleClass_test.py b/python/helpers/pydev/tests_runfiles/samples/simpleClass_test.py
new file mode 100644
index 000000000000..3a9c900e2c2b
--- /dev/null
+++ b/python/helpers/pydev/tests_runfiles/samples/simpleClass_test.py
@@ -0,0 +1,14 @@
+import unittest
+
+class SetUpClassTest(unittest.TestCase):
+
+ @classmethod
+ def setUpClass(cls):
+ raise ValueError("This is an INTENTIONAL value error in setUpClass.")
+
+ def test_blank(self):
+ pass
+
+
+if __name__ == '__main__':
+ unittest.main()