示例#1
0
        public void Initialize_ShouldSetIsFocusedToTrue()
        {
            mSut.Initialize();

            LoggerToMatch loggerToMatch = (LoggerToMatch)mSut.Properties.Single(p => p.GetType() == typeof(LoggerToMatch));

            Assert.IsTrue(loggerToMatch.IsFocused);
        }
 public void SetUp()
 {
     mSut = new LoggerToMatch(new ReadOnlyCollection <IProperty>(new List <IProperty>()));
 }