public void ReturnsFalseWhenAtLeastOneTypeIsNotRegistered()
{
var serviceLocator = new ServiceLocator();
serviceLocator.RegisterType<object>();
serviceLocator.RegisterType<ITestInterface1, TestClass1>();
Assert.IsFalse(serviceLocator.AreAllTypesRegistered(typeof(object), typeof(ITestInterface1), typeof(ITestInterface2)));
}