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

UInt64ConverterTests.cs « tests « System.ComponentModel.TypeConverter « src - github.com/mono/corefx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f8ffbd2df21468854154c010788c06134d9c667c (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
// 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 UInt64ConverterTests : ConverterTestBase
    {
        private static TypeConverter s_converter = new UInt64Converter();

        [Fact]
        public static void ConvertFrom_WithContext()
        {
            ConvertFrom_WithContext(new object[3, 3]
                {
                    { "1  ", (UInt64)1, null },
                    { "#2", (UInt64)2, null },
                    { "+7", (UInt64)7, CultureInfo.InvariantCulture }
                },
                UInt64ConverterTests.s_converter);
        }

        [Fact]
        public static void ConvertFrom_WithContext_Negative()
        {
            Assert.Throws<Exception>(
                () => UInt64ConverterTests.s_converter.ConvertFrom(TypeConverterTests.s_context, null, "-8"));
        }

        [Fact]
        public static void ConvertTo_WithContext()
        {
            ConvertTo_WithContext(new object[3, 3]
                {
                    { (UInt64)1, "1", null },
                    { (UInt64)2, (UInt64)2, CultureInfo.InvariantCulture },
                    { (UInt64)3, (Single)3.0, null }
                },
                UInt64ConverterTests.s_converter);
        }
    }
}