mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
17 lines
281 B
Python
17 lines
281 B
Python
import unittest
|
|
|
|
def setUpModule():
|
|
raise ValueError("This is an INTENTIONAL value error in setUpModule.")
|
|
|
|
class SetUpModuleTest(unittest.TestCase):
|
|
|
|
def setUp(cls):
|
|
pass
|
|
|
|
def test_blank(self):
|
|
pass
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|