Skip to content

Instantly share code, notes, and snippets.

@gahcep
Created February 10, 2013 14:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gahcep/4749770 to your computer and use it in GitHub Desktop.
Save gahcep/4749770 to your computer and use it in GitHub Desktop.
Article 'QA in Python - working with unittest'
import unittest
class ClassB(unittest.TestCase):
def test_add_b(self):
self.assertEquals(120, 100 + 20)
def test_sub_b(self):
self.assertEquals(210, 230 - 20)
def test_mul_b(self):
self.assertEquals(420, 105 * 4)
class ClassC(unittest.TestCase):
def test_add_c(self):
self.assertEquals(120, 100 + 20)
def test_sub_c(self):
self.assertEquals(210, 230 - 20)
def test_mul_c(self):
self.assertEquals(420, 105 * 4)
if __name__ == '__main__':
unittest.main()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment