
Singletons Are Evil
This means that 25% of all classes in the code base are virtually impossible, or at least very hard to unit test. Testing gets difficult as the singletons' global state has to be initialised for each test. This slows down test execution and makes the tests more brittle. That's one of many reasons I just hate the singleton pattern. It's an object oriented anti-pattern. In case you do not believe me, I am sure you will believe well known people like Miško Hevery, Uncle Bob or J.B. Rainsberger to name just a few. At least read Steve Yegge's take on the singleton which is my favourite article on the topic.
Pure Evilness
Some years ago I worked on a code base which was similar both in size and the number of singletons involved. In fact it was not that bad, only 15% of all classes were depending on a singleton, still it was nasty to work with.

... introduce global state/global variables.
- ... hurt modularity and readability.
- ... make concurrent programming hard.
- ... encourage you to forget everything about object oriented design.
- ... are a throwback to non object oriented programming.
- ... allow anyone to access them at any time. (They ignore scope.)
- Finding the right balance of exposure and protection for an object is critical for maintaining flexibility.
- They typically show up like star networks in a coupling diagram.
- ... make assumptions about the applications that will use them.
- If nobody is going to use them they are basically just memory leaks.
- Signatures of methods (inputs) don't show their dependencies, because the method could pull a singleton out of thin air.
- All singletons have to stick in boilerplate code.
- Everyone who uses it has to stick in boilerplate code, too.
- When classes are coupled, it is possible only to test a group of classes together, making bugs more difficult to isolate.
- ... can prevent a developer from testing a class at all.
- Two tests that actually depend on each other by modifying a shared resource (the singleton) can produce blinking tests.
- Mocking would make unit tests run more quickly.
- It is simpler to simulate behaviour than to recreate behaviour.