AIMA.Test.Core.Unit.Logic.FOL.PredicateCollectorTest.testSimpleSentence C# (CSharp) 메소드

testSimpleSentence() 개인적인 메소드

private testSimpleSentence ( ) : void
리턴 void
        public void testSimpleSentence()
        {
            Sentence s = parser.parse("(Missile(x) => Weapon(x))");
            List<Predicate> predicates = collector.getPredicates(s);
            Assert.IsNotNull(predicates);
        }
    }
PredicateCollectorTest