2014-11-23 00:59:05 +08:00
|
|
|
from unittest import TestCase
|
2013-05-11 11:08:45 +08:00
|
|
|
|
2014-11-23 00:59:05 +08:00
|
|
|
from django.test import SimpleTestCase, TestCase as DjangoTestCase
|
2013-05-11 11:08:45 +08:00
|
|
|
|
|
|
|
|
2014-11-23 00:59:05 +08:00
|
|
|
class DjangoCase1(DjangoTestCase):
|
|
|
|
|
|
|
|
def test_1(self):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def test_2(self):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
class DjangoCase2(DjangoTestCase):
|
|
|
|
|
|
|
|
def test_1(self):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def test_2(self):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
class SimpleCase1(SimpleTestCase):
|
|
|
|
|
|
|
|
def test_1(self):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def test_2(self):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
class SimpleCase2(SimpleTestCase):
|
|
|
|
|
|
|
|
def test_1(self):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def test_2(self):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
class UnittestCase1(TestCase):
|
|
|
|
|
|
|
|
def test_1(self):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def test_2(self):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
class UnittestCase2(TestCase):
|
|
|
|
|
|
|
|
def test_1(self):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def test_2(self):
|
2013-05-11 11:08:45 +08:00
|
|
|
pass
|