added dummy class and began writing unit tests
This commit is contained in:
0
tests/creational_tests/__init__.py
Normal file
0
tests/creational_tests/__init__.py
Normal file
14
tests/creational_tests/test_singleton.py
Normal file
14
tests/creational_tests/test_singleton.py
Normal 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:
|
||||
"""
|
||||
Reference in New Issue
Block a user