Exemple #1
0
 public void MasterIndexSearchAttribute_ConstructorForVehicleMasterIndexType()
 {
     masterIndexTypeAttribute = new MasterIndexTypeAttribute(MasterIndexType.Vehicle);
     Assert.AreEqual(MasterIndexType.Vehicle, masterIndexTypeAttribute.MasterType);
 }
Exemple #2
0
 public void MasterIndexSearchAttribute_ConstructorForPropertyMasterIndexType()
 {
     masterIndexTypeAttribute = new MasterIndexTypeAttribute(MasterIndexType.Property);
     Assert.AreEqual(MasterIndexType.Property, masterIndexTypeAttribute.MasterType);
 }
Exemple #3
0
 public void MasterIndexSearchAttribute_ConstructorForNameMasterIndexType()
 {
     _masterIndexTypeAttribute = new MasterIndexTypeAttribute(MasterIndexType.Name);
     Assert.AreEqual(MasterIndexType.Name, _masterIndexTypeAttribute.MasterType);
 }
Exemple #4
0
 public void MasterIndexSearchAttribute_ConstructorForAddressMasterIndexType()
 {
     masterIndexTypeAttribute = new MasterIndexTypeAttribute(MasterIndexType.Address);
     Assert.AreEqual(MasterIndexType.Address, masterIndexTypeAttribute.MasterType);
 }
Exemple #5
0
 public void MasterIndexSearchAttribute_DefaultConstructor()
 {
     _masterIndexTypeAttribute = new MasterIndexTypeAttribute();
     Assert.NotNull(_masterIndexTypeAttribute);
 }