We're a place where coders share, stay up-to-date and grow their careers.
The downside with this version of the singleton is it is not testable. You can't inject a mock to replace the SingletonObject. A good way to avoid this is to use the testable singleton pattern.
SingletonObject
Thanks for the Tip! :D
The downside with this version of the singleton is it is not testable. You can't inject a mock to replace the
SingletonObject
. A good way to avoid this is to use the testable singleton pattern.Thanks for the Tip! :D