[Tutor] Unittest. Run test case independently

Oleg Oltar oltarasenko at gmail.com
Wed Jul 16 08:58:01 CEST 2008


Is that possible to run test cases independently (without unittest.main) and
how to do it

E.g. I tried it this way:

import random
import unittest

class TestSequenceFunctions(unittest.TestCase):

    def setUp(self):
        self.seq = range(10)

    def testshuffle(self):
        # make sure the shuffled sequence does not lose any elements
        random.shuffle(self.seq)
        self.seq.sort()
        self.assertEqual(self.seq, range(10))


    def testchoice(self):
        element = random.choice(self.seq)
        self.assert_(element in self.seq)

    def testsample(self):
        self.assertRaises(ValueError, random.sample, self.seq, 20)
        for element in random.sample(self.seq, 5):
            self.assert_(element in self.seq)

if __name__ == '__main__':
    a = TestSequenceFunctions().testchoice().run()
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.python.org/pipermail/tutor/attachments/20080716/0fcbcfa7/attachment-0001.htm>


More information about the Tutor mailing list