Beispiel #1
0
        public void CandidateVotesTest()
        {
            var candidate = new Candidate("Gula", 13, party);

            candidate.AddVote();

            Assert.AreEqual(candidate.Votes, 1);
        }