Ejemplo n.º 1
0
 public void GetInfoFromBirdRegistrationXSDTest()
 {
     string[] EnumValues = System.Enum.GetNames(typeof(ApplicationUtils.BirdRegistrationXSDType));
     //	Assert.DoAssert(new IsNotEmptyAsserter(EnumValues));
     foreach (string EnumVal in EnumValues)
     {
         object FunctionGetValue = ApplicationUtils.GetInfoFromBirdRegistrationXSD((ApplicationUtils.BirdRegistrationXSDType)(System.Enum.Parse(typeof(ApplicationUtils.BirdRegistrationXSDType), EnumVal)));
         Assert.IsNotNull(FunctionGetValue);
     }
 }