AIMA.Test.Core.Unit.Learning.Learners.DecisionTreeTest.testStumpCreationForDataSet C# (CSharp) Метод

testStumpCreationForDataSet() приватный Метод

private testStumpCreationForDataSet ( ) : void
Результат void
        public void testStumpCreationForDataSet()
        {
            DataSet ds = DataSetFactory.getRestaurantDataSet();
            List<DecisionTree> dt = DecisionTree.getStumpsFor(ds, YES,
                    "Unable to classify");
            Assert.AreEqual(26, dt.Count);
        }