1. from unittest import TestCase
    
  2. 
    
  3. from django.test import SimpleTestCase
    
  4. from django.test import TestCase as DjangoTestCase
    
  5. 
    
  6. 
    
  7. class DjangoCase1(DjangoTestCase):
    
  8.     def test_1(self):
    
  9.         pass
    
  10. 
    
  11.     def test_2(self):
    
  12.         pass
    
  13. 
    
  14. 
    
  15. class DjangoCase2(DjangoTestCase):
    
  16.     def test_1(self):
    
  17.         pass
    
  18. 
    
  19.     def test_2(self):
    
  20.         pass
    
  21. 
    
  22. 
    
  23. class SimpleCase1(SimpleTestCase):
    
  24.     def test_1(self):
    
  25.         pass
    
  26. 
    
  27.     def test_2(self):
    
  28.         pass
    
  29. 
    
  30. 
    
  31. class SimpleCase2(SimpleTestCase):
    
  32.     def test_1(self):
    
  33.         pass
    
  34. 
    
  35.     def test_2(self):
    
  36.         pass
    
  37. 
    
  38. 
    
  39. class UnittestCase1(TestCase):
    
  40.     def test_1(self):
    
  41.         pass
    
  42. 
    
  43.     def test_2(self):
    
  44.         pass
    
  45. 
    
  46. 
    
  47. class UnittestCase2(TestCase):
    
  48.     def test_1(self):
    
  49.         pass
    
  50. 
    
  51.     def test_2(self):
    
  52.         pass
    
  53. 
    
  54.     def test_3_test(self):
    
  55.         pass