public void TestIfUniCanAddAPaperThatAlreadyExistsInPaperDictionary()
        {
            University uni = new University();

            Paper p  = new Paper("Paper 101", 100101, "Paper Man");
            Paper p2 = new Paper("Paper 101", 100101, "Paper Man");

            uni.AddNewPaper(p);

            bool expected, actual;

            expected = true;
            actual   = uni.CheckIfPaperAlreadyExists(p2.PaperID, p2.PaperName);
            Assert.AreEqual(expected, actual);
        }