Beispiel #1
0
        public void DomainNotificationFactory_should_find_LoginAttemptStartedNotification()
        {
            var domainNotificationFactory = new DomainNotificationFactory(
                NullLoggerFactory.Instance.CreateLogger <DomainNotificationFactory>(),
                typeof(Startup));

            Assert.AreEqual(typeof(LoginAttemptStartedNotification),
                            domainNotificationFactory.GetTypeByFullName(typeof(LoginAttemptStartedNotification).FullName));
        }