# -*- coding:utf-8 -*- import unittest class test(unittest.TestCase): def setUp(self): print 'This is the setup msg' def tearDown(self): print 'This is the teardown msg' def test1(self): print 'This is the first testcase' def test2(self): print 'This…
Test Case.Test Suite.Test Runner.Test Fixture Test Case:单个测试用例 Test Suite:测试组合.可以把多个测试用例集合在一起执行. Test Runner:通过Test Runner的run()方法来执行test suite/test case,可以使用图形界面.文本界面,或返回一个特殊的值来表示测试执行的结果. Test Fixture:测试用例环境的搭建和销毁.如果测试用例中需要访问数据库,可以在setUp中建立数据库连接,在te…