public void ShouldNormalizeSample()
        {
            var addressalizer = new Addressalizer();

            addressalizer.Normalize("123 Forty Fifth Avenue Northwest Suite A101");
            // Outputs: 123 45TH AVE NW STE A101
        }
 public void Setup()
 {
     this.addressalizer = new Addressalizer();
     this.stopWatch     = new Stopwatch();
     this.stopWatch.Start();
 }