Python test-driven Development instance _python

Source: Internet
Author: User
Tags md5

This example describes the Python test-driven development approach, shared for everyone to reference. The specific method is as follows:

Import UnitTest from 
main import Sample 
class Sampletest (unittest. TestCase): 
 
  def setUp (self): 
    print "Create a new Sample" 
    self._sample = sample (" B64e5843ca7db8199c405be565fa7f57 ") 
  def teardown (self): 
    print" destory the sample " 
    self._sample = None 
 
  def test_getvirusnamefromvt (self): 
    "This MD5 has the VT info" 
    asample = Sample (" B64e5843ca7db8199c405be565fa7f57 ") 
    Dict_virusname = ASAMPLE._GETVIRUSNAMEFROMVT () 
    self.asserttrue (dict _virusname!=none 
  def test_getvirusnamefromvt2 (self): 
    "This MD5 has not the VT info" 
    asample = Sample (" 2b666ffe98e465523e514d2b93b7666a ") 
    Dict_virusname = ASAMPLE._GETVIRUSNAMEFROMVT () 
    self.asserttrue (Len ( dict_virusname) = = 0) 
 
 
if __name__== "__main__": 
  #unittest. Main () 
  suite = UnitTest. Testloader (). Loadtestsfromtestcase (sampletest) 
  unittest. Texttestrunner (verbosity=2). Run (Suite) 

I hope this article will help you with your Python programming.

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.