Welcome to mirror list, hosted at ThFree Co, Russian Federation.

CharConverterTests.cs « tests « System.ComponentModel.TypeConverter « src - github.com/mono/corefx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e1251829cd2b936b7441f0b60662868c27bb9c8b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.

using System.Globalization;
using Xunit;

namespace System.ComponentModel.Tests
{
    public class CharConverterTests : ConverterTestBase
    {
        private static TypeConverter s_converter = new CharConverter();

        [Fact]
        public static void CanConvertFrom_WithContext()
        {
            CanConvertFrom_WithContext(new object[2, 2]
                {
                    { typeof(string), true },
                    { typeof(int), false }
                },
                CharConverterTests.s_converter);
        }

        [Fact]
        public static void ConvertTo_WithContext()
        {
            ConvertTo_WithContext(new object[3, 3]
                {
                    {'a', "a", null},
                    {'\0', "", null},
                    {'\u20AC', "\u20AC", CultureInfo.InvariantCulture}
                },
                CharConverterTests.s_converter);
        }

        [Fact]
        public static void ConvertFrom_WithContext()
        {
            ConvertFrom_WithContext(new object[3, 3]
                {
                    { " a  ", 'a', CultureInfo.InvariantCulture },
                    { "    ", '\0', null},
                    { "", '\0', null }
                },
               CharConverterTests.s_converter);
        }

        [Fact]
        public static void ConvertFrom_WithContext_Negative()
        {
            Assert.Throws<FormatException>(
                () => CharConverterTests.s_converter.ConvertFrom(TypeConverterTests.s_context, null, "aaa"));

            Assert.Throws<NotSupportedException>(
                () => CharConverterTests.s_converter.ConvertFrom(TypeConverterTests.s_context, null, null));
        }
    }
}