Ejemplo n.º 1
0
        public void Ctor_WithValidArguments_Test()
        {
            var amount = 1000m;
            var region = RegionMother.CreateSimpleModel();
            var period = PeriodMother.CreateSimpleModel();
            var model  = new EstimatedSaleAllocation(amount, region, period);

            Assert.That(model.Amount, Is.EqualTo(amount));
            Assert.That(model.RegionDimension, Is.EqualTo(region));
            Assert.That(model.PeriodDimension, Is.EqualTo(period));
        }
Ejemplo n.º 2
0
        public static EstimatedSaleAllocation CreateSimpleModel()
        {
            var amount = 1000m;

            return(new EstimatedSaleAllocation(amount, RegionMother.CreateSimpleModel(), PeriodMother.CreateSimpleModel()));
        }