public void SetUp()
        {
            theSettings = new AuthenticationSettings();
            theSystemTime = new SettableClock();

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