Ejemplo n.º 1
0
        public void ToStringTest()
        {
            var    text     = "with";
            var    target   = new Preposition(text);
            var    expected = "Preposition \"with\"";
            string actual;

            actual = target.ToString();
            Check.That(actual).IsEqualTo(expected);
        }