/// <summary>
 /// Verify RegistrySearch elements appear in a specific order
 /// </summary>
 /// <param name="embededResourcesDirectoryPath">Output folder where all the embeded resources are.</param>
 /// <param name="searchIds">Ids of the RegistrySearch elements in order.</param>
 public static void VerifyRegistrySearchOrder(string embededResourcesDirectoryPath, params string[] searchIds)
 {
     BundleTests.VerifyBurnManifestElementOrder(embededResourcesDirectoryPath, "RegistrySearch", "Id", searchIds);
 }
 /// <summary>
 /// Verify ProductSearch elements appear in a specific order
 /// </summary>
 /// <param name="embededResourcesDirectoryPath">Output folder where all the embeded resources are.</param>
 /// <param name="productIds">Ids of the ProductSearch elements in order.</param>
 public static void VerifyProductSearchOrder(string embededResourcesDirectoryPath, params string[] productIds)
 {
     BundleTests.VerifyBurnManifestElementOrder(embededResourcesDirectoryPath, "MsiProductSearch", "Id", productIds);
 }