Files
openide/python/testData/debug/unittests_debugging/test_case_14.py
Andrey Lisin 4a928d409f IDEA-CR-65035: Add tests for drop to debugger on test failures feature
(cherry picked from commit 202d5a6aadd282fb5144d16039e5661c22d567ec)

GitOrigin-RevId: c290897d0eff63f4e4192d7368c272e9a4e73ba8
2020-07-16 07:33:25 +00:00

15 lines
222 B
Python

import unittest
from foo import bar
class MyTestCase(unittest.TestCase):
def setUp(self):
pass
def testMethod(self):
self.assertTrue(bar(), True)
if __name__ == '__main__':
unittest.main()