예제 #1
0
        public void SetUp()
        {
            theSettings = new AuthenticationSettings();
            theSystemTime = new SettableClock();

            theRule = new LockedOutRule(theSettings, theSystemTime);
        }
예제 #2
0
 public LoginLockoutGrammar()
     : base("Locked out rules")
 {
     _lockedOutRule = new LockedOutRule(_settings, _systemTime);
 }