Exemplo n.º 1
0
 public void BundleManifestsOfDifferentTypeAreNotEqual()
 {
     BundleManifest manifest1 = new StylesheetBundleManifest { Path = "~/path" };
     BundleManifest manifest2 = new ScriptBundleManifest { Path = "~/path" };
     manifest1.Equals(manifest2).ShouldBeFalse();
 }