Accord.Tests.MachineLearning.NaiveBayesTest.NaiveBayesConstructorTest2 C# (CSharp) 메소드

NaiveBayesConstructorTest2() 개인적인 메소드

private NaiveBayesConstructorTest2 ( ) : void
리턴 void
        public void NaiveBayesConstructorTest2()
        {
            int classes = 2;
            int[] symbols = null;
            bool thrown = false;

            try { new NaiveBayes(classes, symbols); }
            catch { thrown = true; }

            Assert.IsTrue(thrown);
        }