public void Setup()
 {
     SUT = new EnumerateCodeGenerator();
 }
 public void Teardown()
 {
     SUT = null;
 }
Пример #3
0
        /// <summary>
        /// Returns a string that represents the current object.
        /// </summary>
        /// <returns>
        /// A string that represents the current object.
        /// </returns>
        public override string ToString()
        {
            var codeGenerator = new EnumerateCodeGenerator();

            return(codeGenerator.Generate(this));
        }