Skip to content

Instantly share code, notes, and snippets.

@gabriel-tincu
Created January 10, 2019 10:50
Show Gist options
  • Save gabriel-tincu/d5af499b35e8a5e8dbc2357e60ad7a1d to your computer and use it in GitHub Desktop.
Save gabriel-tincu/d5af499b35e8a5e8dbc2357e60ad7a1d to your computer and use it in GitHub Desktop.
import unittest
class MyTest(unittest.TestCase):
def testFoo(self):
self.assertEqual(3,3)
def testBar(self):
self.assertTrue(False)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment