Home | History | Annotate | Download | only in test

Lines Matching refs:MyException

84             def runTest(self): raise MyException()
105 def runTest(self): raise MyException()
116 def runTest(self): raise MyException()
1822 class MyException(Exception):
1826 MyException.ninstance += 1
1830 MyException.ninstance -= 1
1834 raise MyException()
1838 raise MyException()
1843 self.assertEqual(MyException.ninstance, 0)