Last active
June 11, 2023 15:41
-
-
Save k0emt/1187769 to your computer and use it in GitHub Desktop.
Basic Hello world in Python with corresponding unittest
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
__author__ = 'k0emt' | |
class Greeter: | |
def __init__(self): | |
self.message = 'Hello world' | |
# print self.message |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
__author__ = 'k0emt' | |
import unittest | |
from Experiment import Greeter | |
class MyTestCase(unittest.TestCase): | |
def test_default_greeting_set(self): | |
greeter = Greeter() | |
# this test will fail until you change the Greeter to return this expected message | |
self.assertEqual(greeter.message, 'Hello world!') | |
if __name__ == '__main__': | |
unittest.main() |
https://gist.github.com/ronilpatel/4b28e0f821ef119c8a8d223c89987f8a
Have a look at this with additional basic test cases appended to the above python files.
Thank You!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks for this, I was looking for a simple example and this is exactly what I needed.