Accord.Tests.Statistics.GompertzDistributionTest.ConstructorTest3 C# (CSharp) Method

ConstructorTest3() private method

private ConstructorTest3 ( ) : void
return void
        public void ConstructorTest3()
        {
            try
            {
                new GompertzDistribution(eta: 0, b: 7);
                Assert.Fail();
            }
            catch { }

            try
            {
                new GompertzDistribution(eta: 1, b: 0);
                Assert.Fail();
            }
            catch { }
        }