OSDN Git Service

ユニットテストの名前がわかりにくいので変更した
authorgdkhd812 <jbh03215@htmil.co.jp>
Fri, 11 Oct 2013 18:30:31 +0000 (03:30 +0900)
committergdkhd812 <jbh03215@htmil.co.jp>
Fri, 11 Oct 2013 18:30:31 +0000 (03:30 +0900)
WPF/UnitTest/UnitTest1.cs

index bfa686b..6dab3cf 100644 (file)
@@ -18,7 +18,7 @@ namespace UnitTest
     public class FoldingCollectionTest
     {
         [TestMethod]
-        public void TestMethod1()
+        public void GetFoldingItem()
         {
             FoldingCollection collection = new FoldingCollection();
             collection.Add(new FoldingItem(0, 10));
@@ -29,7 +29,7 @@ namespace UnitTest
         }
 
         [TestMethod]
-        public void TestMethod2()
+        public void GetFarestFoldingItem()
         {
             FoldingCollection collection = new FoldingCollection();
             FoldingItem item = new FoldingItem(0, 10);
@@ -42,7 +42,7 @@ namespace UnitTest
         }
 
         [TestMethod]
-        public void TestMethod3()
+        public void GetFoldingItems()
         {
             FoldingCollection collection = new FoldingCollection();
             collection.Add(new FoldingItem(0, 10));
@@ -53,7 +53,7 @@ namespace UnitTest
         }
 
         [TestMethod]
-        public void TestMethod4()
+        public void CollapseFoldingItem()
         {
             FoldingCollection collection = new FoldingCollection();
             FoldingItem newItem = new FoldingItem(0,10);
@@ -66,7 +66,7 @@ namespace UnitTest
         }
 
         [TestMethod]
-        public void TestMethod5()
+        public void ExpandFoldingItem()
         {
             FoldingCollection collection = new FoldingCollection();
             collection.Add(new FoldingItem(0, 10));