Example #1
0
        public void SetUp()
        {
            _mockThisProperty    = Fixture.Mock <IProperty>();
            _mockOtherProperties = Fixture.MockMany <IProperty>();

            _baseRent = Fixture.Create <int>();
            _mockThisProperty.Setup(p => p.BaseRent).Returns(_baseRent);

            _rentStrategy = Fixture.Create <StreetRentStrategy>();
        }
 public RedGroupFactory(StreetRentStrategy rentStrategy, Func <int, uint, IProperty> propertyFactory)
     : base(rentStrategy, propertyFactory)
 {
 }