public virtual void testBackwardConjunctionReduction()
        {
            NLGElement aggregated = bcr.apply(s3, s6);

            Assert.AreEqual("the woman kicks and the woman kisses the dog behind the curtain",
                            realiser.realise(aggregated).Realisation);
        }
Exemple #2
0
        public void testBackwardConjunctionReduction()
        {
            var aggregated = bcr.apply(s3, s6);

            Assert
            .AreEqual(
                "the woman kicks and the woman kisses the dog behind the curtain",
                this.realiser.realise(aggregated).getRealisation());
        }