private void TestMembers(FieldMetaData[] dataMemberConfiguration)
 {
     foreach (FieldMetaData _dmc in dataMemberConfiguration)
       {
     Assert.IsFalse(String.IsNullOrEmpty(_dmc.ProcessValueName));
     Assert.IsFalse(String.IsNullOrEmpty(_dmc.SymbolicName));
       }
 }
 private void TestConfiguration(FieldMetaData[] dataMemberConfiguration)
 {
     foreach (FieldMetaData _dmx in dataMemberConfiguration)
       {
     Assert.IsFalse(String.IsNullOrEmpty(_dmx.ProcessValueName));
     Assert.AreNotEqual<BuiltInType>(BuiltInType.Null, _dmx.TypeInformation.BuiltInType);
     Assert.IsFalse(String.IsNullOrEmpty(_dmx.SymbolicName));
       }
 }