Skip to content
Snippets Groups Projects
Commit 4f85b9ee authored by Sebastian Lobinger's avatar Sebastian Lobinger
Browse files

add test_get_instance according to issue #5

parent 86cfbf25
No related branches found
No related tags found
1 merge request!3Resolve "getInstance implementieren"
......@@ -44,4 +44,7 @@ class TestConfigProvider(unittest.TestCase):
expected_dict, self.config.dict,
'expected_dict musst equal self.config.dict')
self.assertNotEqual(
old_dict, self.config.dict, 'old_dict musst not equal self.config.dict')
\ No newline at end of file
old_dict, self.config.dict, 'old_dict musst not equal self.config.dict')
def test_get_instance(self):
self.assertEqual(config_provider.ConfigProvider.getInstance(), self.config)
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment