我一直在遇到一些奇怪的代码问题,最后似乎注意到应该充当单例的东西实际上并不是单例。这是一个缓存类,所以我最终拥有同一个缓存的多个版本。我已经按照下面的方法编写了一些测试代码,在我看来这应该可以工作。我做错了什么,还是我偶然发现了一个错误?
public class GenericClassesNotRegisteredAsSingletonTest
{
public interface ICacheManager<T> { }
public class SettingsData { }
public class SettingsCache : CacheManager<SettingsData> { }
public class CacheManager<T> : ICacheManager<T> { }
[Test]
public void Test()
{
var container = new Container();
var registration = Lifestyle.Singleton
.CreateRegistration(typeof(SettingsCache),
typeof(SettingsCache), container);
container.AddRegistration(
typeof(ICacheManager<SettingsData>), registration);
container.Verify();
var cache1 = container.GetInstance<SettingsCache>();
var cache2 = container.GetInstance<SettingsCache>();
bool sameRef = cache1 == cache2;
Assert.That(sameRef == true);
}
}