Esempio n. 1
0
 public void SqlNameSafe()
 {
     Assert.IsTrue(string.IsNullOrEmpty(StringUtilsSQL.SqlNameSafe(null)));
     Assert.IsTrue(string.IsNullOrEmpty(StringUtilsSQL.SqlNameSafe(string.Empty)));
     Assert.AreEqual("[Raphael.Noeldner]", StringUtilsSQL.SqlNameSafe("Raphael.Noeldner"));
     Assert.AreEqual("[Table]", StringUtilsSQL.SqlNameSafe("Table"));
 }