Exemplo n.º 1
0
        public int GetSexTest01([PexAssumeUnderTest] BusinessPlayer target, string input)
        {
            int result = target.GetSex(input);

            return(result);
            // TODO: add assertions to method BusinessPlayerTest.GetSexTest01(BusinessPlayer, String)
        }
Exemplo n.º 2
0
        public List <string> GetSexTest([PexAssumeUnderTest] BusinessPlayer target)
        {
            List <string> result = target.GetSex();

            return(result);
            // TODO: add assertions to method BusinessPlayerTest.GetSexTest(BusinessPlayer)
        }
Exemplo n.º 3
0
 private void loadDataGender()
 {
     gender.Properties.Items.Clear();
     foreach (String x in business.GetSex())
     {
         gender.Properties.Items.Add(x);
     }
 }