GildedRose-Refactoring-Kata/csharp/ApprovalTest.cs
Emmanuel b6536a2cfc Unit Tests
- Still completing unit tests
- modified very minor things with comments.
- check readme.md for more comments
2021-04-27 11:15:31 +02:00

29 lines
681 B
C#

//using System;
//using System.IO;
//using System.Text;
//using ApprovalTests;
//using ApprovalTests.Reporters;
//using NUnit.Framework;
//namespace csharp
//{
// [UseReporter(typeof(DiffReporter))]
// [TestFixture]
// public class ApprovalTest
// {
// [Test]
// public void ThirtyDays()
// {
// StringBuilder fakeoutput = new StringBuilder();
// Console.SetOut(new StringWriter(fakeoutput));
// Console.SetIn(new StringReader("a\n"));
// Program.Main(new string[] { });
// var output = fakeoutput.ToString();
// Approvals.Verify(output);
// }
// }
//}