OSDN Git Service

Merge pull request #44 from upsilon/csharp7
[opentween/open-tween.git] / OpenTween.Tests / ExtensionsTest.cs
1 // OpenTween - Client of Twitter
2 // Copyright (c) 2017 kim_upsilon (@kim_upsilon) <https://upsilo.net/~upsilon/>
3 // All rights reserved.
4 //
5 // This file is part of OpenTween.
6 //
7 // This program is free software; you can redistribute it and/or modify it
8 // under the terms of the GNU General Public License as published by the Free
9 // Software Foundation; either version 3 of the License, or (at your option)
10 // any later version.
11 //
12 // This program is distributed in the hope that it will be useful, but
13 // WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
14 // or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15 // for more details.
16 //
17 // You should have received a copy of the GNU General Public License along
18 // with this program. If not, see <http://www.gnu.org/licenses/>, or write to
19 // the Free Software Foundation, Inc., 51 Franklin Street - Fifth Floor,
20 // Boston, MA 02110-1301, USA.
21
22 using System;
23 using System.Collections.Generic;
24 using System.Globalization;
25 using System.Linq;
26 using System.Text;
27 using System.Threading.Tasks;
28 using Xunit;
29
30 namespace OpenTween
31 {
32     public class ExtensionsTest
33     {
34         [Theory]
35         [InlineData("ja", "ja-JP", true)]
36         [InlineData("ja", "ja", true)]
37         [InlineData("ja-JP", "ja-JP", true)]
38         [InlineData("ja-JP", "ja", false)]
39         // 4 階層以上の親を持つカルチャ
40         // 参照: https://msdn.microsoft.com/ja-jp/library/dd997383(v=vs.100).aspx#%E6%96%B0%E3%81%97%E3%81%84%E7%89%B9%E5%AE%9A%E3%82%AB%E3%83%AB%E3%83%81%E3%83%A3
41         [InlineData("zh-Hant", "zh-TW", true)]
42         [InlineData("zh-Hant", "zh-CHT", true)]
43         [InlineData("zh-Hant", "zh-Hant", true)]
44         [InlineData("zh-Hant", "zh", false)]
45         public void Contains_Test(string thisCultureStr, string thatCultureStr, bool expected)
46         {
47             var thisCulture = new CultureInfo(thisCultureStr);
48             var thatCulture = new CultureInfo(thatCultureStr);
49             Assert.Equal(expected, thisCulture.Contains(thatCulture));
50         }
51
52         public void Contains_InvariantCultureTest()
53         {
54             // InvariantCulture は全てのカルチャを内包する
55             Assert.True(CultureInfo.InvariantCulture.Contains(new CultureInfo("ja")));
56             Assert.True(CultureInfo.InvariantCulture.Contains(CultureInfo.InvariantCulture));
57         }
58     }
59 }