mirror of
https://github.com/emilybache/GildedRose-Refactoring-Kata.git
synced 2026-02-19 16:31:30 +00:00
- Still completing unit tests - modified very minor things with comments. - check readme.md for more comments
19 lines
490 B
C#
19 lines
490 B
C#
//using NUnit.Framework;
|
|
//using System.Collections.Generic;
|
|
|
|
//namespace csharp
|
|
//{
|
|
// [TestFixture]
|
|
// public class GildedRoseTest
|
|
// {
|
|
// [Test]
|
|
// public void foo()
|
|
// {
|
|
// IList<Item> Items = new List<Item> { new Item { Name = "Aged Brie", SellIn = 0, Quality = 0 } };
|
|
// GildedRose app = new GildedRose(Items);
|
|
// app.UpdateQuality();
|
|
// Assert.AreEqual("Aged Brie", Items[0].Name);
|
|
// }
|
|
// }
|
|
//}
|