added dummy class and began writing unit tests

This commit is contained in:
tylerlaberge
2016-07-17 19:06:26 -04:00
parent 49ad3c0a6e
commit d67889327c
8 changed files with 104 additions and 0 deletions

View File

View File

@@ -0,0 +1,14 @@
from unittest import TestCase
from creational import singleton
class SingletonTestCase(TestCase):
"""
Unit testing class for the singleton design pattern.
"""
def setUp(self):
"""
Initialize testing data.
:return:
"""