Exemple #1
0
 public void SitecoreStartsWithUmbracoCaseInsensitive()
 {
     Assert.IsFalse(SomeUnitTestableStuff.StartsWithUmbraco("Sitecore for the loose", true));
 }
Exemple #2
0
 public void SitecoreStartsWithUmbraco()
 {
     Assert.IsFalse(SomeUnitTestableStuff.StartsWithUmbraco("Sitecore for the loose"));
 }
Exemple #3
0
 public void UmbracoStartsWithUmbracoUppercaseCaseInsensitive()
 {
     Assert.True(SomeUnitTestableStuff.StartsWithUmbraco("UMBRACO FOR THE WIN", true));
 }
Exemple #4
0
 public void UmbracoStartsWithUmbracoUppercase()
 {
     Assert.IsFalse(SomeUnitTestableStuff.StartsWithUmbraco("UMBRACO FOR THE WIN"));
 }
Exemple #5
0
 public void UmbracoStartsWithUmbracoCaseInsensitive()
 {
     Assert.IsTrue(SomeUnitTestableStuff.StartsWithUmbraco("umbraco for the win", true));
 }
Exemple #6
0
 public void UmbracoStartsWithUmbraco()
 {
     Assert.IsTrue(SomeUnitTestableStuff.StartsWithUmbraco("Umbraco for the win"));
 }