public void SuccessfullyCalculateHyperbolicArctangentOfPositiveAngle()
        {
            var value    = 60;
            var function = new HyperbolicArctangentFunction();

            var phase = function.Calculate();

            Assert.NotNull(phase);
            Assert.Equal("Specify Argument", phase.Name);
            Assert.Equal("Specify angle to find the hyperbolic arctangent of.", phase.Description);
            Assert.Collection(phase.Inputs,
                              i =>
            {
                Assert.Equal("Angle", i.Info.Name);
                Assert.Null(i.Info.Description);
                Assert.Equal(new RadianUnit(), i.Info.Unit);
            });

            phase.Inputs[0].Value = value;

            Assert.Null(function.Calculate(phase));

            Assert.Collection(function.CurrentResult,
                              i =>
            {
                Assert.Equal(typeof(double), i.ValueType);
                Assert.Equal(Math.Atanh(value), TypeConverter.ToObject <double>(i.Value));
            });
        }
        public void SuccessfullySetFunctionInfo()
        {
            var function = new HyperbolicArctangentFunction();

            Assert.NotNull(function.FunctionInfo);
            Assert.Equal("Hyperbolic Arctangent", function.FunctionInfo.Name);
            Assert.Equal(new Version("1.0.0"), function.FunctionInfo.Version);
            Assert.Equal("Find the hyperbolic arctangent of an angle.", function.FunctionInfo.Description);
            Assert.Collection(function.FunctionInfo.Tags,
                              i => Assert.Equal("hyperbolic", i),
                              i => Assert.Equal("arctangent", i),
                              i => Assert.Equal("arctanh", i));
        }
        public void SuccessfullyCalculateHyperbolicArctangentWithNoAngleSpecified()
        {
            var function = new HyperbolicArctangentFunction();

            var phase = function.Calculate();

            Assert.NotNull(phase);

            Assert.Null(function.Calculate(phase));

            Assert.Collection(function.CurrentResult,
                              i =>
            {
                Assert.Equal(typeof(double), function.CurrentResult[0].ValueType);
                Assert.Equal(Math.Atanh(0.0), TypeConverter.ToObject <double>(function.CurrentResult[0].Value));
            });
        }
        public void SuccessfullyCalculateHyperbolicArctangentOfNegativeAngle()
        {
            var value    = -54;
            var function = new HyperbolicArctangentFunction();

            var phase = function.Calculate();

            Assert.NotNull(phase);

            phase.Inputs[0].Value = value;

            Assert.Null(function.Calculate(phase));

            Assert.Collection(function.CurrentResult,
                              i =>
            {
                Assert.Equal(typeof(double), i.ValueType);
                Assert.Equal(Math.Atanh(value), TypeConverter.ToObject <double>(i.Value));
            });
        }