public void SetUp()
        {
            r1 = MockRepository.GenerateMock <IBottleConfigurationRule>();
            r2 = MockRepository.GenerateMock <IBottleConfigurationRule>();

            theInstaller = new AssertBottleConfiguration("Test", new[] { r1, r2 });
        }
        public void SetUp()
        {
            r1 = MockRepository.GenerateMock<IBottleConfigurationRule>();
            r2 = MockRepository.GenerateMock<IBottleConfigurationRule>();

            theInstaller = new AssertBottleConfiguration("Test", new[] { r1, r2 });
        }
Ejemplo n.º 3
0
 public BottleConfigurationDef AddRule(IBottleConfigurationRule rule)
 {
     _rules.AddValue(rule);
     return(this);
 }