Exemplo n.º 1
0
        public void VarSIsGivenNumbersAsInputstakeTwo()
        {
            var function = new VarS();
            var result1  = function.Execute(FunctionsHelper.CreateArgs(-1, -1, -1), this.ParsingContext);

            Assert.AreEqual(0, result1.ResultNumeric, .00001);
        }
Exemplo n.º 2
0
        public void VarSIsGivenMaxAmountOfInputs254()
        {
            var function = new VarS();
            var input1   = 1;

            var result1 = function.Execute(FunctionsHelper.CreateArgs(
                                               100, input1, input1, input1, input1, input1, input1, input1, input1, input1, input1, input1, input1, input1, input1,
                                               input1, input1, input1, input1, input1, input1, input1, input1, input1, input1, input1, input1, input1, input1, input1,
                                               input1, input1, input1, input1, input1, input1, input1, input1, input1, input1, input1, input1, input1, input1, input1,
                                               input1, input1, input1, input1, input1, input1, input1, input1, input1, input1, input1, input1, input1, input1, input1,
                                               input1, input1, input1, input1, input1, input1, input1, input1, input1, input1, input1, input1, input1, input1, input1,
                                               input1, input1, input1, input1, input1, input1, input1, input1, input1, input1, input1, input1, input1, input1, input1,
                                               input1, input1, input1, input1, input1, input1, input1, input1, input1, input1, input1, input1, input1, input1, input1,
                                               input1, input1, input1, input1, input1, input1, input1, input1, input1, input1, input1, input1, input1, input1, input1,
                                               input1, input1, input1, input1, input1, input1, input1, input1, input1, input1, input1, input1, input1, input1, input1,
                                               input1, input1, input1, input1, input1, input1, input1, input1, input1, input1, input1, input1, input1, input1, input1,
                                               input1, input1, input1, input1, input1, input1, input1, input1, input1, input1, input1, input1, input1, input1, input1,
                                               input1, input1, input1, input1, input1, input1, input1, input1, input1, input1, input1, input1, input1, input1, input1,
                                               input1, input1, input1, input1, input1, input1, input1, input1, input1, input1, input1, input1, input1, input1, input1,
                                               input1, input1, input1, input1, input1, input1, input1, input1, input1, input1, input1, input1, input1, input1, input1,
                                               input1, input1, input1, input1, input1, input1, input1, input1, input1, input1, input1, input1, input1, input1, input1,
                                               input1, input1, input1, input1, input1, input1, input1, input1, input1, input1, input1, input1, input1, input1, input1,
                                               input1, input1, input1, input1, input1, input1, input1, input1, input1, input1, input1, input1, input1, input1
                                               ), this.ParsingContext);


            Assert.AreEqual(38.58661417, result1.ResultNumeric, .00001);
        }
Exemplo n.º 3
0
        public void VarSIsGivenTwoRangesOfIntsAsInputsWithATimeInTheMiddleOfTheFirstRangeTestTwo()
        {
            var function = new VarS();

            using (var package = new ExcelPackage())
            {
                var worksheet = package.Workbook.Worksheets.Add("Sheet1");
                worksheet.Cells["B1"].Value = 1;
                worksheet.Cells["B2"].Value = 2;
                worksheet.Cells["B3"].Value = 34;
                worksheet.Cells["B4"].Value = "12:00";
                worksheet.Cells["B5"].Value = "6/17/2011 2:00";
                worksheet.Cells["B6"].Value = 76;

                worksheet.Cells["B7"].Value  = 2;
                worksheet.Cells["B8"].Value  = 3;
                worksheet.Cells["B9"].Value  = 5;
                worksheet.Cells["B10"].Value = 7;
                worksheet.Cells["B11"].Value = 45;


                worksheet.Cells["A9"].Formula = "=Var.S(B1:B6, B7:B11)";
                worksheet.Calculate();
                Assert.AreEqual(705.7777778, (double)worksheet.Cells["A9"].Value, .00001);
            }
        }
Exemplo n.º 4
0
        public void VarSIsGivenASingleStringInput()
        {
            var function = new VarS();
            var result1  = function.Execute(FunctionsHelper.CreateArgs("string"), this.ParsingContext);

            Assert.AreEqual(eErrorType.Value, ((ExcelErrorValue)result1.Result).Type);
        }
Exemplo n.º 5
0
        public void VarSIsGivenNumberInputFromCellRefrence()
        {
            var function = new VarS();

            using (var package = new ExcelPackage())
            {
                var worksheet = package.Workbook.Worksheets.Add("Sheet1");
                worksheet.Cells["B1"].Value    = 66;
                worksheet.Cells["B2"].Value    = 52;
                worksheet.Cells["B3"].Value    = 77;
                worksheet.Cells["B4"].Value    = 71;
                worksheet.Cells["B5"].Value    = 30;
                worksheet.Cells["B6"].Value    = 90;
                worksheet.Cells["B7"].Value    = 26;
                worksheet.Cells["B8"].Value    = 56;
                worksheet.Cells["B9"].Value    = 7;
                worksheet.Cells["A10"].Formula = "=Var.S(B:B)";
                worksheet.Cells["A11"].Formula = "=Var.S(B1,B3,B5,B6,B9)";
                worksheet.Cells["A12"].Formula = "=Var.S(B1,B3,B5,B6)";
                worksheet.Calculate();

                Assert.AreEqual(727.6944444, (double)worksheet.Cells["A10"].Value, .00001);
                Assert.AreEqual(1188.5, (double)worksheet.Cells["A11"].Value, .00001);
                Assert.AreEqual(664.25, (double)worksheet.Cells["A12"].Value, .00001);
            }
        }
Exemplo n.º 6
0
        public void VarSIsGivenMonthDayYear12HourTimeAsInputs()
        {
            var function = new VarS();
            var result1  = function.Execute(FunctionsHelper.CreateArgs("Jan 17, 2011 2:00 am", "June 5, 2017 11:00 pm", "June 15, 2017 11:00 pm"), this.ParsingContext);

            Assert.AreEqual(1820353.255, result1.ResultNumeric, .001);
        }
Exemplo n.º 7
0
        public void VarSIsGivenTwoRangesOfIntsAsInputs()
        {
            var function = new VarS();

            using (var package = new ExcelPackage())
            {
                var worksheet = package.Workbook.Worksheets.Add("Sheet1");
                worksheet.Cells["B1"].Value = 1;
                worksheet.Cells["B2"].Value = 2;
                worksheet.Cells["B3"].Value = 34;
                worksheet.Cells["B4"].Value = 56;
                worksheet.Cells["B5"].Value = 32;
                worksheet.Cells["B6"].Value = 76;

                worksheet.Cells["B7"].Value  = 2;
                worksheet.Cells["B8"].Value  = 3;
                worksheet.Cells["B9"].Value  = 5;
                worksheet.Cells["B10"].Value = 7;
                worksheet.Cells["B11"].Value = 45;


                worksheet.Cells["A9"].Formula = "=Var.S(B1:B6, B7:B11)";
                worksheet.Calculate();
                Assert.AreEqual(692.0909091, (double)worksheet.Cells["A9"].Value, .00001);
            }
        }
Exemplo n.º 8
0
        public void VarSIsGiven12HourTimesAsInputs()
        {
            var function = new VarS();
            var result1  = function.Execute(FunctionsHelper.CreateArgs("12:00 am", "02:00 am", "01:00 pm"), this.ParsingContext);

            Assert.AreEqual(0.085069444, result1.ResultNumeric, .00001);
        }
Exemplo n.º 9
0
        public void VarSIsGivenDateTimeInputsSeperatedByADashAsInputs()
        {
            var function = new VarS();
            var result1  = function.Execute(FunctionsHelper.CreateArgs("1-17-2017 2:00", "6-17-2017 2:00", "9-17-2017 2:00"), this.ParsingContext);

            Assert.AreEqual(15052.33333, result1.ResultNumeric, .00001);
        }
Exemplo n.º 10
0
        public void VarSIsGivenASingleFalseBooleanInput()
        {
            var function = new VarS();
            var result1  = function.Execute(FunctionsHelper.CreateArgs(false), this.ParsingContext);

            Assert.AreEqual(0, result1.ResultNumeric, .00001);;
        }
Exemplo n.º 11
0
        public void VarSIsGivenStringNumbersAsInputs()
        {
            var function = new VarS();
            var result1  = function.Execute(FunctionsHelper.CreateArgs("5", "6", "7"), this.ParsingContext);
            var result2  = function.Execute(FunctionsHelper.CreateArgs("5.5", "6.6", "7.7"), this.ParsingContext);

            Assert.AreEqual(1, result1.ResultNumeric, .00001);
            Assert.AreEqual(1.21, result2.ResultNumeric, .00001);
        }
Exemplo n.º 12
0
        public void VarSIsGivenAMixedStringInputWithAEmptyCellInTheMiddle()
        {
            var function = new VarS();
            var result1  = function.Execute(FunctionsHelper.CreateArgs(10, 2, "6/17/2011 2:00", "02:00 am"), this.ParsingContext);
            var result2  = function.Execute(FunctionsHelper.CreateArgs(10, 2, "6/17/2011 2:00", null, "02:00 am"), this.ParsingContext);

            Assert.AreEqual(414266111.4, result1.ResultNumeric, .1);
            Assert.AreEqual(331429287.4, result2.ResultNumeric, .1);
        }
Exemplo n.º 13
0
        public void VarSIsGivenAStringInputWithAEmptyCellInTheMiddle()
        {
            var function = new VarS();
            var result1  = function.Execute(FunctionsHelper.CreateArgs(66, 52, 77, 71, 30, 90, 26, 56, 7), this.ParsingContext);
            var result2  = function.Execute(FunctionsHelper.CreateArgs(66, 52, 77, 71, null, 30, 90, 26, 56, 7), this.ParsingContext);

            Assert.AreEqual(727.6944444, result1.ResultNumeric, .00001);
            Assert.AreEqual(925.3888889, result2.ResultNumeric, .00001);
        }
Exemplo n.º 14
0
        public void VarSIsGivenAMixOfInputTypes()
        {
            var function = new VarS();
            var result1  = function.Execute(FunctionsHelper.CreateArgs(1, true, null, "6/17/2011 2:00", "02:00 am"), this.ParsingContext);
            var result2  = function.Execute(FunctionsHelper.CreateArgs(1, true, "6/17/2011 2:00", "02:00 am"), this.ParsingContext);

            Assert.AreEqual(331469980, result1.ResultNumeric, .1);
            Assert.AreEqual(414333941.1, result2.ResultNumeric, .1);
        }
Exemplo n.º 15
0
        public void VarSIsGivenBooleanInputs()
        {
            var function       = new VarS();
            var boolInputTrue  = true;
            var boolInputFalse = false;
            var result1        = function.Execute(FunctionsHelper.CreateArgs(boolInputTrue, boolInputTrue, boolInputFalse), this.ParsingContext);
            var result2        = function.Execute(FunctionsHelper.CreateArgs(boolInputTrue, boolInputTrue, boolInputTrue), this.ParsingContext);
            var result3        = function.Execute(FunctionsHelper.CreateArgs(boolInputTrue, boolInputFalse, boolInputFalse), this.ParsingContext);

            Assert.AreEqual(0.333333333, result1.ResultNumeric, .00001);
            Assert.AreEqual(0, result2.ResultNumeric, .00001);
            Assert.AreEqual(0.333333333, result3.ResultNumeric, .00001);
        }
Exemplo n.º 16
0
        public void VarSIsGivenADateSeperatedByABackslash()
        {
            var function = new VarS();
            var input1   = "1/17/2011 2:00";
            var input2   = "6/17/2011 2:00";
            var input3   = "1/17/2012 2:00";
            var input4   = "1/17/2013 2:00";
            var result1  = function.Execute(FunctionsHelper.CreateArgs(input1, input1, input1), this.ParsingContext);
            var result2  = function.Execute(FunctionsHelper.CreateArgs(input1, input2, input1), this.ParsingContext);
            var result3  = function.Execute(FunctionsHelper.CreateArgs(input1, input3, input4), this.ParsingContext);

            Assert.AreEqual(0, result1.ResultNumeric, .00001);
            Assert.AreEqual(7600.333333, result2.ResultNumeric, .00001);
            Assert.AreEqual(133590.3333, result3.ResultNumeric, .0001);
        }
Exemplo n.º 17
0
        public void VarSIsGivenStringsAsInputsByCellRange()
        {
            var function = new VarS();

            using (var package = new ExcelPackage())
            {
                var worksheet = package.Workbook.Worksheets.Add("Sheet1");
                worksheet.Cells["B1"].Value   = "string";
                worksheet.Cells["B2"].Value   = "another string";
                worksheet.Cells["B3"].Value   = "a third string";
                worksheet.Cells["B4"].Formula = "=Var.S(B1:B3)";
                worksheet.Calculate();
                Assert.AreEqual(eErrorType.Div0, ((ExcelErrorValue)worksheet.Cells["B4"].Value).Type);
            }
        }
Exemplo n.º 18
0
        public void VarSIsGivenDateTimeInputsSeperatedByADashAsInputsByCellRange()
        {
            var function = new VarS();

            using (var package = new ExcelPackage())
            {
                var worksheet = package.Workbook.Worksheets.Add("Sheet1");
                worksheet.Cells["B1"].Value   = "1-17-2017 2:00";
                worksheet.Cells["B2"].Value   = "6-17-2017 2:00";
                worksheet.Cells["B3"].Value   = "9-17-2017 2:00";
                worksheet.Cells["B4"].Formula = "=Var.S(B1:B3)";
                worksheet.Calculate();
                Assert.AreEqual(eErrorType.Div0, ((ExcelErrorValue)worksheet.Cells["B4"].Value).Type);
            }
        }
Exemplo n.º 19
0
        public void VarSIsGivenMonthDayYear12HourTimeAsInputsByCellRange()
        {
            var function = new VarS();

            using (var package = new ExcelPackage())
            {
                var worksheet = package.Workbook.Worksheets.Add("Sheet1");
                worksheet.Cells["B1"].Value   = "Jan 17, 2011 2:00 am";
                worksheet.Cells["B2"].Value   = "June 5, 2017 11:00 pm";
                worksheet.Cells["B3"].Value   = "June 15, 2017 11:00 pm";
                worksheet.Cells["B4"].Formula = "=Var.S(B1:B3)";
                worksheet.Calculate();
                Assert.AreEqual(eErrorType.Div0, ((ExcelErrorValue)worksheet.Cells["B4"].Value).Type);
            }
        }
Exemplo n.º 20
0
        public void VarSIsGiven12HourTimesAsInputsByCellRefrence()
        {
            var function = new VarS();

            using (var package = new ExcelPackage())
            {
                var worksheet = package.Workbook.Worksheets.Add("Sheet1");
                worksheet.Cells["B1"].Value   = "12:00 am";
                worksheet.Cells["B2"].Value   = "02:00 am";
                worksheet.Cells["B3"].Value   = "01:00 pm";
                worksheet.Cells["B4"].Formula = "=Var.S(B1,B2,B3)";
                worksheet.Calculate();
                Assert.AreEqual(eErrorType.Div0, ((ExcelErrorValue)worksheet.Cells["B4"].Value).Type);
            }
        }
Exemplo n.º 21
0
        public void VarSTestingDirectInputVsRangeInputWithAGapInTheMiddle()
        {
            var function = new VarS();

            using (var package = new ExcelPackage())
            {
                var worksheet = package.Workbook.Worksheets.Add("Sheet1");
                worksheet.Cells["B1"].Value   = 1;
                worksheet.Cells["B3"].Value   = 1;
                worksheet.Cells["B8"].Formula = "=Var.S(B1,B3)";
                worksheet.Cells["B9"].Formula = "=Var.S(B1:B3)";
                worksheet.Calculate();
                Assert.AreEqual(0d, worksheet.Cells["B8"].Value);
                Assert.AreEqual(0d, worksheet.Cells["B9"].Value);
            }
        }
Exemplo n.º 22
0
        public void VarSTestingDirectINputVsRangeInputTest2()
        {
            var function = new VarS();

            using (var package = new ExcelPackage())
            {
                var worksheet = package.Workbook.Worksheets.Add("Sheet1");
                worksheet.Cells["B1"].Value   = 1;
                worksheet.Cells["B2"].Value   = 0;
                worksheet.Cells["B8"].Formula = "=Var.S(B1,B2)";
                worksheet.Cells["B9"].Formula = "=Var.S(B1:B2)";
                worksheet.Calculate();
                Assert.AreEqual(0.5, (double)worksheet.Cells["B8"].Value, .00001);
                Assert.AreEqual(0.5, (double)worksheet.Cells["B9"].Value, .00001);
            }
        }
Exemplo n.º 23
0
        public void VarSIsGivenAMixOfTwoTypesAndTwoRangesThatShouldHaveAnOutputTestTwo()
        {
            var function = new VarS();

            using (var package = new ExcelPackage())
            {
                var worksheet = package.Workbook.Worksheets.Add("Sheet1");
                worksheet.Cells["B1"].Value   = 10;
                worksheet.Cells["B2"].Value   = 2;
                worksheet.Cells["B3"].Value   = "6/17/2011 2:00";
                worksheet.Cells["B4"].Value   = "02:00 am";
                worksheet.Cells["B9"].Formula = "=Var.S(B1:B4)";
                worksheet.Calculate();
                Assert.AreEqual(32, (double)worksheet.Cells["B9"].Value, .0001);
            }
        }
Exemplo n.º 24
0
        public void VarSIsGivenAMixOfInputTypesByCellRange()
        {
            var function = new VarS();

            using (var package = new ExcelPackage())
            {
                var worksheet = package.Workbook.Worksheets.Add("Sheet1");
                worksheet.Cells["B1"].Value   = 15;
                worksheet.Cells["B2"].Value   = 1;
                worksheet.Cells["B3"].Value   = "6/17/2011 2:00";
                worksheet.Cells["B4"].Value   = "02:00 am";
                worksheet.Cells["B9"].Formula = "=Var.S(B1:B4)";
                worksheet.Calculate();

                Assert.AreEqual(98, (double)worksheet.Cells["B9"].Value, .00001);
            }
        }
Exemplo n.º 25
0
        public void VarSIsGivenBooleanInputsFromCellRefrence()
        {
            var function = new VarS();

            using (var package = new ExcelPackage())
            {
                var worksheet = package.Workbook.Worksheets.Add("Sheet1");
                worksheet.Cells["B1"].Value   = true;
                worksheet.Cells["B2"].Value   = false;
                worksheet.Cells["B3"].Formula = "=Var.S(B1,B1,B2)";
                worksheet.Cells["B4"].Formula = "=Var.S(B1,B1,B1)";
                worksheet.Cells["B5"].Formula = "=Var.S(B1,B2,B2)";
                worksheet.Calculate();
                Assert.AreEqual(eErrorType.Div0, ((ExcelErrorValue)worksheet.Cells["B3"].Value).Type);
                Assert.AreEqual(eErrorType.Div0, ((ExcelErrorValue)worksheet.Cells["B4"].Value).Type);
                Assert.AreEqual(eErrorType.Div0, ((ExcelErrorValue)worksheet.Cells["B5"].Value).Type);
            }
        }
Exemplo n.º 26
0
        public void VarSIsGivenAMixOfInputTypesWithANullInTheCenterByCellRefrenceAndTwoRangeInputs()
        {
            var function = new VarS();

            using (var package = new ExcelPackage())
            {
                var worksheet = package.Workbook.Worksheets.Add("Sheet1");
                worksheet.Cells["B1"].Value = 15;
                worksheet.Cells["B2"].Value = 1;
                //empty B3 cell
                worksheet.Cells["B4"].Value   = "6/17/2011 2:00";
                worksheet.Cells["B5"].Value   = "02:00 am";
                worksheet.Cells["B8"].Formula = "=Var.S(B1,B2)";
                worksheet.Cells["B9"].Formula = "=Var.S(B1:B5,B1:B5)";
                worksheet.Calculate();
                Assert.AreEqual(98, (double)worksheet.Cells["B8"].Value, .00001);
                Assert.AreEqual(65.33333, (double)worksheet.Cells["B9"].Value, .00001);
            }
        }
Exemplo n.º 27
0
        public void VarSIsGivenStringNumbersAsInputsByCellRange()
        {
            var function = new VarS();

            using (var package = new ExcelPackage())
            {
                var worksheet = package.Workbook.Worksheets.Add("Sheet1");
                worksheet.Cells["A1"].Value   = "5";
                worksheet.Cells["A2"].Value   = "6";
                worksheet.Cells["A3"].Value   = "7";
                worksheet.Cells["B1"].Value   = "5.5";
                worksheet.Cells["B2"].Value   = "6.6";
                worksheet.Cells["B3"].Value   = "7.7";
                worksheet.Cells["A4"].Formula = "=Var.S(A1:A3)";
                worksheet.Cells["B4"].Formula = "=Var.S(B1:B3)";
                worksheet.Calculate();
                Assert.AreEqual(eErrorType.Div0, ((ExcelErrorValue)worksheet.Cells["A4"].Value).Type);
                Assert.AreEqual(eErrorType.Div0, ((ExcelErrorValue)worksheet.Cells["B4"].Value).Type);
            }
        }
Exemplo n.º 28
0
        public void VarSIsGivenADateSeperatedByABackslashInputFromCellRefrence()
        {
            var function = new VarS();

            using (var package = new ExcelPackage())
            {
                var worksheet = package.Workbook.Worksheets.Add("Sheet1");
                worksheet.Cells["B1"].Value   = "1/17/2011 2:00";
                worksheet.Cells["B2"].Value   = "6/17/2011 2:00";
                worksheet.Cells["B3"].Value   = "1/17/2012 2:00";
                worksheet.Cells["B4"].Value   = "1/17/2013 2:00";
                worksheet.Cells["B5"].Formula = "=Var.S(B1,B1,B1)";
                worksheet.Cells["B6"].Formula = "=Var.S(B1,B2,B1)";
                worksheet.Cells["B7"].Formula = "=Var.S(B1,B3,B4)";
                worksheet.Calculate();
                Assert.AreEqual(eErrorType.Div0, ((ExcelErrorValue)worksheet.Cells["B5"].Value).Type);
                Assert.AreEqual(eErrorType.Div0, ((ExcelErrorValue)worksheet.Cells["B6"].Value).Type);
                Assert.AreEqual(eErrorType.Div0, ((ExcelErrorValue)worksheet.Cells["B7"].Value).Type);
            }
        }
Exemplo n.º 29
0
        public void VarSIsGivenNumberInputFromCellRefrenceWithEmptyCellsFirstAndAnInvalidCellInTheMiddle()
        {
            var function = new VarS();

            using (var package = new ExcelPackage())
            {
                var worksheet = package.Workbook.Worksheets.Add("Sheet1");
                worksheet.Cells["B3"].Value = 66;
                worksheet.Cells["B4"].Value = 52;
                worksheet.Cells["B5"].Value = 77;
                worksheet.Cells["B6"].Value = 71;
                //B7 is an empty cell
                worksheet.Cells["B8"].Value    = 90;
                worksheet.Cells["B9"].Value    = 26;
                worksheet.Cells["B10"].Value   = 56;
                worksheet.Cells["B11"].Value   = 7;
                worksheet.Cells["A12"].Formula = "=Var.S(B1:B11)";
                worksheet.Calculate();
                Assert.AreEqual(748.2678571, (double)worksheet.Cells["A12"].Value, .00001);
            }
        }
Exemplo n.º 30
0
        public void VarSIsGivenAStringInputWithAEmptyCellInTheMiddleByCellRefrence()
        {
            var function = new VarS();

            using (var package = new ExcelPackage())
            {
                var worksheet = package.Workbook.Worksheets.Add("Sheet1");
                worksheet.Cells["B3"].Value = 66;
                worksheet.Cells["B4"].Value = 52;
                worksheet.Cells["B5"].Value = 77;
                worksheet.Cells["B6"].Value = 71;
                //empty B7 cell
                worksheet.Cells["B8"].Value    = 90;
                worksheet.Cells["B9"].Value    = 26;
                worksheet.Cells["B10"].Value   = 56;
                worksheet.Cells["B11"].Value   = 7;
                worksheet.Cells["B12"].Value   = 30;
                worksheet.Cells["A12"].Formula = "=Var.S(B3:B12)";
                worksheet.Calculate();
                Assert.AreEqual(727.6944444, (double)worksheet.Cells["A12"].Value, .00001);
            }
        }