Test case withverbosity for python automated testing

Source: Internet
Author: User
This article describes how to run the test case withverbosity from the command line in python automated testing. it is a classic automated testing example, for more information about how to run the test case with verbosity in the Command Line for python automation testing, see the example in this article. The details are as follows:

The instance File recipe3.py is as follows:

class RomanNumeralConverter(object):   def __init__(self, roman_numeral):     self.roman_numeral = roman_numeral     self.digit_map = {"M":1000, "D":500, "C":100, "L":50, "X":10,               "V":5, "I":1}   def convert_to_decimal(self):     val = 0     for char in self.roman_numeral:       val += self.digit_map[char]     return val     import unittest class RomanNumeralConverterTest(unittest.TestCase):        def test_parsing_millenia(self):     value = RomanNumeralConverter("M")     self.assertEquals(1000, value.convert_to_decimal())        def test_parsing_century(self):     '''THIS is a error test case'''     value = RomanNumeralConverter("C")     self.assertEquals(10, value.convert_to_decimal())                if __name__ == "__main__":   suite = unittest.TestLoader().loadTestsFromTestCase(RomanNumeralConverterTest)   unittest.TextTestRunner(verbosity=2).run(suite)

Shows the running result:

This is how the test case fails.

I hope this article will help you with Python programming.

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.