Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个带有私有构造函数的单例类,并想为此编写单元测试。
知道如何使用 mockito 框架模拟具有私有构造函数的类。
谢谢
虽然没有直接回答您的问题,但我认为值得阅读有关单例反模式的信息,并且可能考虑使用一种替代方法,例如依赖注入来组合您的应用程序。
那么你应该能够使用这个库:http ://code.google.com/p/powermock/来做到这一点。但这是非常不鼓励的。