public void SetUp()
        {
            c1 = new StubDirectoryCondition();
            c2 = new StubDirectoryCondition();
            c3 = new StubDirectoryCondition();

            theCompositeCondition = new CompositeDirectoryCondition(c1, c2, c3);
        }
Пример #2
0
        public void SetUp()
        {
            c1 = new StubDirectoryCondition();
            c2 = new StubDirectoryCondition();
            c3 = new StubDirectoryCondition();

            theCompositeCondition = new CompositeDirectoryCondition(c1, c2, c3);
        }
 public void SetUp()
 {
     theInnerCondition = new StubDirectoryCondition();
     theCondition = new NotDirectoryCondition(theInnerCondition);
 }
Пример #4
0
 public void SetUp()
 {
     theInnerCondition = new StubDirectoryCondition();
     theCondition      = new NotDirectoryCondition(theInnerCondition);
 }