Skip to content

Instantly share code, notes, and snippets.

@icomkid
Created June 16, 2011 06:56
Show Gist options
  • Save icomkid/1028806 to your computer and use it in GitHub Desktop.
Save icomkid/1028806 to your computer and use it in GitHub Desktop.
Python UnitTest Template
import unittest
class TestProblem(unittest.TestCase):
def test_sample(self):
self.assertEqual(1, 1)
if __name__ == '__main__':
unittest.main()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment