OSDN Git Service

涙の文字化け修正とテストケース変更
authorthe40san <oss.ma40@gmail.com>
Thu, 13 Dec 2012 07:33:04 +0000 (16:33 +0900)
committerthe40san <oss.ma40@gmail.com>
Thu, 13 Dec 2012 07:36:41 +0000 (16:36 +0900)
OpenTween.Tests/FoursquareTest.cs

index 0412deb..35704a8 100644 (file)
@@ -1,55 +1,54 @@
-// OpenTween - Client of Twitter\r
-// Copyright (c) 2012      the40san <http://sourceforge.jp/users/the40san/>\r
-// All rights reserved.\r
-// \r
-// This file is part of OpenTween.\r
-// \r
-// This program is free software; you can redistribute it and/or modify it\r
-// under the terms of the GNU General public License as published by the Free\r
-// Software Foundation; either version 3 of the License, or (at your option)\r
-// any later version.\r
-// \r
-// This program is distributed in the hope that it will be useful, but\r
-// WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY\r
-// or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General public License\r
-// for more details.\r
-// \r
-// You should have received a copy of the GNU General public License along\r
-// with this program. If not, see <http://www.gnu.org/licenses/>, or write to\r
-// the Free Software Foundation, Inc., 51 Franklin Street - Fifth Floor,\r
-// Boston, MA 02110-1301, USA.\r
-\r
-using System;\r
-using System.Collections.Generic;\r
-using System.Linq;\r
-using System.Text;\r
-using NUnit.Framework;\r
-using OpenTween;\r
-\r
-namespace OpenTween.Tests\r
-{\r
-    /// <summary>\r
-    /// OpenTween.Foursquareクラステスト用\r
-    /// </summary>\r
-    [TestFixture]\r
-    class FoursquareTest\r
-    {\r
-\r
-        [Test]\r
-        public void Test_GetInstance()\r
-        {\r
-            Assert.That(Foursquare.GetInstance, Is.TypeOf(typeof(Foursquare)));\r
-            Assert.That(Foursquare.GetInstance, Is.Not.Null);\r
-        }\r
-\r
-        [TestCase("https://ja.foursquare.com/v/starbucks-coffee-jr%E6%9D%B1%E6%B5%B7-%E5%93%81%E5%B7%9D%E9%A7%85%E5%BA%97/4b5fd527f964a52036ce29e3", Result = "")]\r
-        [TestCase("https://ja.foursquare.com/keihotmanp/checkin/501be52be4b01e9e719e459e?s=IeKLsUAddfpBsXL7PkEsYZ3xzSg", Result = "")]\r
-        public string Test_GetMapsUri(string url)\r
-        {\r
-            AppendSettingDialog.Instance.IsPreviewFoursquare = true;\r
-            string refText ="";\r
-            return Foursquare.GetInstance.GetMapsUri(url, ref refText);\r
-        }\r
-        \r
-    }\r
-}\r
+// OpenTween - Client of Twitter
+// Copyright (c) 2012      the40san <http://sourceforge.jp/users/the40san/>
+// All rights reserved.
+// 
+// This file is part of OpenTween.
+// 
+// This program is free software; you can redistribute it and/or modify it
+// under the terms of the GNU General public License as published by the Free
+// Software Foundation; either version 3 of the License, or (at your option)
+// any later version.
+// 
+// This program is distributed in the hope that it will be useful, but
+// WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+// or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General public License
+// for more details.
+// 
+// You should have received a copy of the GNU General public License along
+// with this program. If not, see <http://www.gnu.org/licenses/>, or write to
+// the Free Software Foundation, Inc., 51 Franklin Street - Fifth Floor,
+// Boston, MA 02110-1301, USA.
+
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using NUnit.Framework;
+using OpenTween;
+
+namespace OpenTween.Tests
+{
+    /// <summary>
+    /// OpenTween.Foursquareクラステスト用
+    /// </summary>
+    [TestFixture]
+    class FoursquareTest
+    {
+
+        [Test]
+        public void Test_GetInstance()
+        {
+            Assert.That(Foursquare.GetInstance, Is.TypeOf(typeof(Foursquare)));
+            Assert.That(Foursquare.GetInstance, Is.Not.Null);
+        }
+
+        [TestCase("https://ja.foursquare.com/v/starbucks-coffee-jr%E6%9D%B1%E6%B5%B7-%E5%93%81%E5%B7%9D%E9%A7%85%E5%BA%97/4b5fd527f964a52036ce29e3", Result = "")]
+        public string Test_GetMapsUri(string url)
+        {
+            AppendSettingDialog.Instance.IsPreviewFoursquare = true;
+            string refText ="";
+            return Foursquare.GetInstance.GetMapsUri(url, ref refText);
+        }
+        
+    }
+}