Example #1
0
        public void SpacifyTest3()
        {
            string[] strings = new string[] {
                "oneflewoverthecuckoosnest",
                "peanutbutter",
                "abrashrebelralliesthepatientstotakeontheoppressive",
                "peoplewhoareworkinghardeveryday"
            };

            SpaceMaker sm = new SpaceMaker ();
            foreach (string s in strings) {
                foreach (string result in sm.Spacify (s))
                    Console.WriteLine (result);
                Console.WriteLine ();
            }
        }
Example #2
0
 public void SpacifyTest2()
 {
     SpaceMaker s = new SpaceMaker ();
     foreach (string result in s.Spacify ("oneflewoverthecuckoosnest"))
         Console.WriteLine (result);
 }
Example #3
0
 public void SpacifyTest()
 {
     SpaceMaker s = new SpaceMaker ();
     foreach (string result in s.Spacify ("peanutbutter"))
         Console.WriteLine (result);
 }