Exemplo n.º 1
0
        public void AboveLegalAgeTest()
        {
            int  testAge = 19;
            bool result  = Class1.IsLegalVotingAge(testAge);

            Assert.True(result);
        }
Exemplo n.º 2
0
        public void BelowLegalAgeTest()
        {
            int  testAge = 11;
            bool result  = Class1.IsLegalVotingAge(testAge);

            Assert.False(result);
        }