public void AddLovePointsTest()
        {
            GamePlayer testP = new GamePlayer();
            int        score = testP.LovePointTotal;

            Assert.AreEqual(50, score);

            testP.AddLovePoints(20);
            score = testP.LovePointTotal;

            Assert.AreEqual(70, score);


            testP.AddLovePoints(-70);
            score = testP.LovePointTotal;

            Assert.AreEqual(20, score);
        }