public static void Main()
var x = new NUnitLite.AutoRun().Execute(new string[]{"--test:LS.StringUtilitiesTests", "--noc"});
Console.WriteLine("----------------------------------------------");
Console.WriteLine(x==0?"All Test Passed... :¬)": string.Format("{0} tests failed... :¬(", x));
Console.WriteLine("----------------------------------------------");
public static class StringUtilities
public static bool IsPalindrome(string s)
public class StringUtilitiesTests
public void IsPalindromeDetectsPalindromes(string s)