Python-unittest (2)

Source: Internet
Author: User

Setting up and tearing down a test harness. With the following steps, we will setup and
Teardown a test harness for each test method.
1. Create a new file called recipe2.py in which to put all our code for this recipe.

2. Pick a class to test. In this case, we will use a slightly altered version of our Roman
Numeral converter, where the function, not the constructor, provides the input value
To convert.

3. Create a test class using the same name as the class under test with test appended
To the end.

4. Create a setup method that creates an instance of the class under test.

5. Create a teardown method that destroys the instance of the class under test.

6. create all the test methods using self. converter.

7. Make the entire script runnable and then use the test runner of unittest.
If _ name _ = "_ main __":
Unittest. Main ()

8. Run the file from the command line.

 

Source code:

Code# !usr/bin/env python 2.7# coding: utf-8# filename: recipe2.pyclass RomanNumeralConverter(object):    def __init__(self):        self.digit_map = {"M":1000, "D":500, "C":100, "L":50, "X":10, "V":5, "I":1}    def convert_to_decimal(self, roman_numeral):        val = 0        for char in roman_numeral:            val += self.digit_map[char]        return valimport unittestclass RomanNumeralConverterTest(unittest.TestCase):    def setUp(self):        print "Creating a new RomanNumeralConverter..."        self.cvt = RomanNumeralConverter()    def tearDown(self):        print "Destroying the RomanNumeralConverter..."        self.cvt = None    def test_parsing_millenia(self):        self.assertEquals(1000, \                          self.cvt.convert_to_decimal("M"))    def test_parsing_century(self):        self.assertEquals(100, \                          self.cvt.convert_to_decimal("C"))    def test_parsing_half_century(self):        self.assertEquals(50, \                          self.cvt.convert_to_decimal("L"))    def test_parsing_decade(self):        self.assertEquals(10, \                          self.cvt.convert_to_decimal("X"))    def test_parsing_half_decade(self):        self.assertEquals(5, self.cvt.convert_to_decimal("V"))    def test_parsing_one(self):        self.assertEquals(1, self.cvt.convert_to_decimal("I"))    def test_empty_roman_numeral(self):        self.assertTrue(self.cvt.convert_to_decimal("") == 0)        self.assertFalse(self.cvt.convert_to_decimal("") > 0)    def test_no_roman_numeral(self):        self.assertRaises(TypeError, \                          self.cvt.convert_to_decimal, None)if __name__ == "__main__":    unittest.main()

 

Result:

Creating a New romannumeralconverter...
Destroying the romannumeralconverter...
. Creating a New romannumeralconverter...
Destroying the romannumeralconverter...
. Creating a New romannumeralconverter...
Destroying the romannumeralconverter...
. Creating a New romannumeralconverter...
Destroying the romannumeralconverter...
. Creating a New romannumeralconverter...
Destroying the romannumeralconverter...
. Creating a New romannumeralconverter...
Destroying the romannumeralconverter...
. Creating a New romannumeralconverter...
Destroying the romannumeralconverter...
. Creating a New romannumeralconverter...
Destroying the romannumeralconverter...
.
----------------------------------------------------------------------
Ran 8 tests in 0.001 s

OK

The result shows that every testcase will be reloaded.SetupOnce

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.