Ejemplo n.º 1
0
        public void SetUp()
        {
            _mapper1           = new DigitCalc_Ass1();
            _mapper2           = new DigitCalc_Ass2();
            _digitInstructions = new List <string>();
            string stringRepo = Properties.Resources.input;
            string line;

            using (StringReader sr = new StringReader(stringRepo))
                while ((line = sr.ReadLine()) != null)
                {
                    _digitInstructions.Add(line);
                }
        }
 public void SetUp()
 {
     _mapper1           = new DigitCalc_Ass1();
     _mapper2           = new DigitCalc_Ass2();
     _digitInstructions = new List <string>();
 }