unit testing, setUp and scoping

  • Follow


Can one use the setUp block to store variables so that they can be
used elsewhere in unit tests? I'm thinking that it's better to have
variables created in another script and have it imported from within
the unit test

#!/usr/bin/env python
'''create knowledge base of strings by unit testing'''
import unittest

class TestPythonStringsTestCase(unittest.TestCase):
	def setUp(self):
		print '''setting up stuff for ''', __name__
		s1 = 'single string'
		print dir(str)

	def testclass(self):
		'''test strings are of class str'''
		self.assertEqual(s1.__class__, str)

if __name__ == "__main__":
	unittest.main()



-- 
John Maclean
07739 171 531
MSc (DIC)

Enterprise Linux Systems Engineer
0
Reply john 4/14/2010 2:47:31 PM

john maclean a �crit :
> Can one use the setUp block to store variables so that they can be
> used elsewhere in unit tests? I'm thinking that it's better to have
> variables created in another script and have it imported from within
> the unit test

???

> 
> #!/usr/bin/env python
> '''create knowledge base of strings by unit testing'''
> import unittest
> 
> class TestPythonStringsTestCase(unittest.TestCase):
> 	def setUp(self):
> 		print '''setting up stuff for ''', __name__
> 		s1 = 'single string'
> 		print dir(str)
> 
> 	def testclass(self):
> 		'''test strings are of class str'''
> 		self.assertEqual(s1.__class__, str)


Err... What about FIRST doing the FineTutorial ???

class TestPythonStringsTestCase(unittest.TestCase):
     def setUp(self):
	self.s1 = 'single string'

     def testclass(self):
         "test strings are of class str"
          self.assert(type(self.s1) is str)


0
Reply Bruno 4/14/2010 3:11:26 PM


1 Replies
103 Views

(page loaded in 0.007 seconds)

Similiar Articles:













7/26/2012 6:37:15 AM


Reply: