Example #1
0
        public void DigitProcessorThrowsArgumentExceptionWhenInputIsNotDigit()
        {
            var t9Processor = new T9InputProcessor();

            Assert.Throws <ArgumentException>(() => t9Processor['x']);
        }
Example #2
0
 public T9InputBulkProcessor()
 {
     t9 = new T9InputProcessor();
 }