public void CoshHandlesInputDatesAreSeperatedByDashes() { var function = new Cosh(); var input1 = "1-17-2017 2:00"; var input2 = "1-17-2017 2:00 am"; var result1 = function.Execute(FunctionsHelper.CreateArgs(input1), this.ParsingContext); var result2 = function.Execute(FunctionsHelper.CreateArgs(input2), this.ParsingContext); Assert.AreEqual(eErrorType.Num, ((ExcelErrorValue)result1.Result).Type); Assert.AreEqual(eErrorType.Num, ((ExcelErrorValue)result2.Result).Type); }
public void CoshHandlesMilitaryTimesPast2400() { var function = new Cosh(); var input1 = "01:00"; var input2 = "02:00"; var result1 = function.Execute(FunctionsHelper.CreateArgs(input1), this.ParsingContext); var result2 = function.Execute(FunctionsHelper.CreateArgs(input2), this.ParsingContext); Assert.AreEqual(1.000868181, System.Math.Round(result1.ResultNumeric, 9)); Assert.AreEqual(1.003474232, System.Math.Round(result2.ResultNumeric, 9)); }
public void CoshHandlesTrueOrFalse() { var function = new Cosh(); var input1 = true; var input2 = false; var result1 = function.Execute(FunctionsHelper.CreateArgs(input1), this.ParsingContext); var result2 = function.Execute(FunctionsHelper.CreateArgs(input2), this.ParsingContext); Assert.AreEqual(1.543080635, System.Math.Round(result1.ResultNumeric, 9)); Assert.AreEqual(1, System.Math.Round(result2.ResultNumeric, 9)); }
public void CoshTestInputsWithDatesThatHaveSlashesInThem() { var function = new Cosh(); var input1 = "1/17/2011 2:00 am"; var input2 = "17/01/2011 2:00 AM"; var input3 = "17/Jan/2011 2:00 AM"; var input4 = "17/January/2011 2:00 am"; var input5 = "1/17/2011 2:00:00 am"; var input6 = "17/01/2011 2:00:00 AM"; var input7 = "17/Jan/2011 2:00:00 AM"; var input8 = "17/January/2011 2:00:00 am"; var result1 = function.Execute(FunctionsHelper.CreateArgs(input1), this.ParsingContext); var result2 = function.Execute(FunctionsHelper.CreateArgs(input2), this.ParsingContext); var result3 = function.Execute(FunctionsHelper.CreateArgs(input3), this.ParsingContext); var result4 = function.Execute(FunctionsHelper.CreateArgs(input4), this.ParsingContext); var result5 = function.Execute(FunctionsHelper.CreateArgs(input5), this.ParsingContext); var result6 = function.Execute(FunctionsHelper.CreateArgs(input6), this.ParsingContext); var result7 = function.Execute(FunctionsHelper.CreateArgs(input7), this.ParsingContext); var result8 = function.Execute(FunctionsHelper.CreateArgs(input8), this.ParsingContext); Assert.AreEqual(eErrorType.Num, ((ExcelErrorValue)result1.Result).Type); Assert.AreEqual(eErrorType.Value, ((ExcelErrorValue)result2.Result).Type); Assert.AreEqual(eErrorType.Num, ((ExcelErrorValue)result3.Result).Type); Assert.AreEqual(eErrorType.Num, ((ExcelErrorValue)result4.Result).Type); Assert.AreEqual(eErrorType.Num, ((ExcelErrorValue)result5.Result).Type); Assert.AreEqual(eErrorType.Value, ((ExcelErrorValue)result6.Result).Type); Assert.AreEqual(eErrorType.Num, ((ExcelErrorValue)result7.Result).Type); Assert.AreEqual(eErrorType.Num, ((ExcelErrorValue)result8.Result).Type); }
public void CoshHandlesMilitaryTime() { var function = new Cosh(); var input1 = "00:00"; var input2 = "00:01"; var input3 = "23:59:59"; var result1 = function.Execute(FunctionsHelper.CreateArgs(input1), this.ParsingContext); var result2 = function.Execute(FunctionsHelper.CreateArgs(input2), this.ParsingContext); var result3 = function.Execute(FunctionsHelper.CreateArgs(input3), this.ParsingContext); Assert.AreEqual(1, result1.ResultNumeric, .000001); Assert.AreEqual(1.000000241, System.Math.Round(result2.ResultNumeric, 9)); Assert.AreEqual(1.543067033, System.Math.Round(result3.ResultNumeric, 9)); }
public void CoshHandlesNormal12HourClockInputs() { var function = new Cosh(); var input1 = "00:00:00 AM"; var input2 = "00:01:32 AM"; var input3 = "12:00 PM"; var input4 = "12:00 AM"; var input5 = "1:00 PM"; var input6 = "1:10:32 am"; var input7 = "3:42:32 pm"; var result1 = function.Execute(FunctionsHelper.CreateArgs(input1), this.ParsingContext); var result2 = function.Execute(FunctionsHelper.CreateArgs(input2), this.ParsingContext); var result3 = function.Execute(FunctionsHelper.CreateArgs(input3), this.ParsingContext); var result4 = function.Execute(FunctionsHelper.CreateArgs(input4), this.ParsingContext); var result5 = function.Execute(FunctionsHelper.CreateArgs(input5), this.ParsingContext); var result6 = function.Execute(FunctionsHelper.CreateArgs(input6), this.ParsingContext); var result7 = function.Execute(FunctionsHelper.CreateArgs(input7), this.ParsingContext); Assert.AreEqual(1, result1.ResultNumeric, .00001); Assert.AreEqual(1.000000567, result2.ResultNumeric, .00001); Assert.AreEqual(1.127625965, result3.ResultNumeric, .00001); Assert.AreEqual(1, result4.ResultNumeric, .00001); Assert.AreEqual(1.150323536, result5.ResultNumeric, .00001); Assert.AreEqual(1.001199833, result6.ResultNumeric, .00001); Assert.AreEqual(1.221967027, result7.ResultNumeric, .00001); }
public void CosHShouldReturnCorrectResult() { var func = new Cosh(); var args = FunctionsHelper.CreateArgs(2); var result = func.Execute(args, _parsingContext); var roundedResult = Math.Round((double)result.Result, 9); Assert.AreEqual(3.762195691, roundedResult); }
public void CoshWithInvalidArgumentReturnsPoundValue() { var func = new Cosh(); var parsingContext = ParsingContext.Create(); var args = FunctionsHelper.CreateArgs(); var result = func.Execute(args, parsingContext); Assert.AreEqual(eErrorType.Value, ((ExcelErrorValue)result.Result).Type); }
public void ExecuteComplexNumberTest() { var complex = new Complex(3, 2); var exp = new Cosh(new ComplexNumber(complex)); var result = (Complex)exp.Execute(); Assert.Equal(Complex.Cosh(complex), result); Assert.Equal(-4.189625690968807230132555, result.Real, 15); Assert.Equal(9.10922789375533659797919, result.Imaginary, 15); }
public void CoshIsGivenAStringAsInput() { var function = new Cosh(); var input1 = "string"; var input2 = "0"; var input3 = "1"; var input4 = "1.5"; var result1 = function.Execute(FunctionsHelper.CreateArgs(input1), this.ParsingContext); var result2 = function.Execute(FunctionsHelper.CreateArgs(input2), this.ParsingContext); var result3 = function.Execute(FunctionsHelper.CreateArgs(input3), this.ParsingContext); var result4 = function.Execute(FunctionsHelper.CreateArgs(input4), this.ParsingContext); Assert.AreEqual(eErrorType.Value, ((ExcelErrorValue)result1.Result).Type); Assert.AreEqual(1, result2.ResultNumeric, .00001); Assert.AreEqual(1.543080635, result3.ResultNumeric, .00001); Assert.AreEqual(2.352409615, result4.ResultNumeric, .00001); }
public void CoshHandlesDateTimeInputs() { var function = new Cosh(); var input1 = "1/17/2011 2:00"; var input2 = "1/17/2011 2:00 AM"; var input3 = "17/1/2011 2:00 AM"; var input4 = "17/Jan/2011 2:00 AM"; var result1 = function.Execute(FunctionsHelper.CreateArgs(input1), this.ParsingContext); var result2 = function.Execute(FunctionsHelper.CreateArgs(input2), this.ParsingContext); var result3 = function.Execute(FunctionsHelper.CreateArgs(input3), this.ParsingContext); var result4 = function.Execute(FunctionsHelper.CreateArgs(input4), this.ParsingContext); Assert.AreEqual(eErrorType.Num, ((ExcelErrorValue)result1.Result).Type); Assert.AreEqual(eErrorType.Num, ((ExcelErrorValue)result2.Result).Type); Assert.AreEqual(eErrorType.Value, ((ExcelErrorValue)result3.Result).Type); Assert.AreEqual(eErrorType.Num, ((ExcelErrorValue)result4.Result).Type); }
public void CoshTestMilitaryTimeAndNormalTimeComparisions() { var function = new Cosh(); var input1 = "16:30"; var input2 = "04:30 pm"; var input3 = "02:30"; var input4 = "2:30 am"; var result1 = function.Execute(FunctionsHelper.CreateArgs(input1), this.ParsingContext); var result2 = function.Execute(FunctionsHelper.CreateArgs(input2), this.ParsingContext); var result3 = function.Execute(FunctionsHelper.CreateArgs(input3), this.ParsingContext); var result4 = function.Execute(FunctionsHelper.CreateArgs(input4), this.ParsingContext); Assert.AreEqual(1.245784524, System.Math.Round(result1.ResultNumeric, 9)); Assert.AreEqual(1.245784524, System.Math.Round(result2.ResultNumeric, 9)); Assert.AreEqual(1.005430255, System.Math.Round(result3.ResultNumeric, 9)); Assert.AreEqual(1.005430255, System.Math.Round(result4.ResultNumeric, 9)); }
public void CoshHandlesInputsWithDatesInTheFormMonthDateCommaYearTime() { var function = new Cosh(); var input1 = "Jan 17, 2011 2:00 am"; var input2 = "June 5, 2017 11:00 pm"; var input3 = "Jan 17, 2011 2:00:00 am"; var input4 = "June 5, 2017 11:00:00 pm"; var result1 = function.Execute(FunctionsHelper.CreateArgs(input1), this.ParsingContext); var result2 = function.Execute(FunctionsHelper.CreateArgs(input2), this.ParsingContext); var result3 = function.Execute(FunctionsHelper.CreateArgs(input3), this.ParsingContext); var result4 = function.Execute(FunctionsHelper.CreateArgs(input4), this.ParsingContext); Assert.AreEqual(eErrorType.Num, ((ExcelErrorValue)result1.Result).Type); Assert.AreEqual(eErrorType.Num, ((ExcelErrorValue)result2.Result).Type); Assert.AreEqual(eErrorType.Num, ((ExcelErrorValue)result3.Result).Type); Assert.AreEqual(eErrorType.Num, ((ExcelErrorValue)result4.Result).Type); }
public void CoshHandlesPi() { var function = new Cosh(); var Pi = System.Math.PI; var input1 = Pi; var input2 = Pi / 2; var input3 = 2 * Pi; var input4 = 60 * Pi / 180; var result1 = function.Execute(FunctionsHelper.CreateArgs(input1), this.ParsingContext); var result2 = function.Execute(FunctionsHelper.CreateArgs(input2), this.ParsingContext); var result3 = function.Execute(FunctionsHelper.CreateArgs(input3), this.ParsingContext); var result4 = function.Execute(FunctionsHelper.CreateArgs(input4), this.ParsingContext); Assert.AreEqual(11.59195328, System.Math.Round(result1.ResultNumeric, 8)); Assert.AreEqual(2.509178479, System.Math.Round(result2.ResultNumeric, 9)); Assert.AreEqual(267.7467615, System.Math.Round(result3.ResultNumeric, 7)); Assert.AreEqual(1.600286858, System.Math.Round(result4.ResultNumeric, 9)); }
public void CoshIntAndDoublesAsInputs() { var function = new Cosh(); var input1 = 20; var input2 = 100; var input3 = 1; var input4 = 1.0; var input5 = 1.5; var input6 = 1000; var result1 = function.Execute(FunctionsHelper.CreateArgs(input1), this.ParsingContext); var result2 = function.Execute(FunctionsHelper.CreateArgs(input2), this.ParsingContext); var result3 = function.Execute(FunctionsHelper.CreateArgs(input3), this.ParsingContext); var result4 = function.Execute(FunctionsHelper.CreateArgs(input4), this.ParsingContext); var result5 = function.Execute(FunctionsHelper.CreateArgs(input5), this.ParsingContext); var result6 = function.Execute(FunctionsHelper.CreateArgs(input6), this.ParsingContext); Assert.AreEqual(242582597.7, System.Math.Round(result1.ResultNumeric, 1)); Assert.AreEqual(1.3440585709080678E+43, System.Math.Round(result2.ResultNumeric, 9)); Assert.AreEqual(1.543080635, System.Math.Round(result3.ResultNumeric, 9)); Assert.AreEqual(1.543080635, System.Math.Round(result4.ResultNumeric, 9)); Assert.AreEqual(2.352409615, System.Math.Round(result5.ResultNumeric, 9)); Assert.AreEqual(eErrorType.Num, ((ExcelErrorValue)result6.Result).Type); }
public void CoshIsGivenValuesRanginFromNegative10to10() { var function = new Cosh(); var input1 = -10; var input2 = -1; var input3 = 0; var input4 = 1; var input5 = 10; var result1 = function.Execute(FunctionsHelper.CreateArgs(input1), this.ParsingContext); var result2 = function.Execute(FunctionsHelper.CreateArgs(input2), this.ParsingContext); var result3 = function.Execute(FunctionsHelper.CreateArgs(input3), this.ParsingContext); var result4 = function.Execute(FunctionsHelper.CreateArgs(input4), this.ParsingContext); var result5 = function.Execute(FunctionsHelper.CreateArgs(input5), this.ParsingContext); Assert.AreEqual(11013.23292, result1.ResultNumeric, .00001); Assert.AreEqual(1.543080635, result2.ResultNumeric, .00001); Assert.AreEqual(1, result3.ResultNumeric, .00001); Assert.AreEqual(1.543080635, result4.ResultNumeric, .00001); Assert.AreEqual(11013.23292, result5.ResultNumeric, .00001); }
public void CoshHandlesDoublesCorrectly() { var function = new Cosh(); var input1 = 0.5; var input2 = 0.25; var input3 = 0.9; var input4 = -0.9; var input5 = ".5"; var result1 = function.Execute(FunctionsHelper.CreateArgs(input1), this.ParsingContext); var result2 = function.Execute(FunctionsHelper.CreateArgs(input2), this.ParsingContext); var result3 = function.Execute(FunctionsHelper.CreateArgs(input3), this.ParsingContext); var result4 = function.Execute(FunctionsHelper.CreateArgs(input4), this.ParsingContext); var result5 = function.Execute(FunctionsHelper.CreateArgs(input5), this.ParsingContext); Assert.AreEqual(1.127625965, System.Math.Round(result1.ResultNumeric, 9)); Assert.AreEqual(1.0314131, System.Math.Round(result2.ResultNumeric, 9)); Assert.AreEqual(1.433086385, System.Math.Round(result3.ResultNumeric, 9)); Assert.AreEqual(1.433086385, System.Math.Round(result4.ResultNumeric, 9)); Assert.AreEqual(1.127625965, System.Math.Round(result5.ResultNumeric, 9)); }
public void ExecuteTestException() { var exp = new Cosh(new Bool(false)); Assert.Throws <ResultIsNotSupportedException>(() => exp.Execute()); }
public void ExecuteGradianTest() { var exp = new Cosh(new Number(1)); Assert.Equal(Math.Cosh(1 * Math.PI / 200), exp.Execute(AngleMeasurement.Gradian)); }
public void ExecuteDegreeTest() { var exp = new Cosh(new Number(1)); Assert.Equal(Math.Cosh(1 * Math.PI / 180), exp.Execute(AngleMeasurement.Degree)); }
public void ExecuteTest() { var exp = new Cosh(new Number(1)); Assert.Equal(Math.Cosh(1), exp.Execute()); }