Example #1
0
        public void TestTheir()
        {
            var sut = new Their();

            Assert.That(sut.Format(female), Is.EqualTo("her"));
            Assert.That(sut.Format(male), Is.EqualTo("his"));
            Assert.That(sut.Format(epicene), Is.EqualTo("their"));
            Assert.That(sut.Format(neuter), Is.EqualTo("its"));
        }
Example #2
0
        public void TestTheir()
        {
            var sut = new Their();

            Assert.AreEqual("her", sut.Format(female));
            Assert.AreEqual("his", sut.Format(male));
            Assert.AreEqual("their", sut.Format(epicene));
            Assert.AreEqual("its", sut.Format(neuter));
        }