summaryrefslogtreecommitdiff
path: root/tests/src/CoreMangLib/cti/system/globalization/stringinfo/stringinfoctor1.cs
blob: edd16c04d928ba9f9479d5b6e5f68e37c8bf1ddc (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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
// 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;
using System.Globalization;

/// <summary>
/// System.Globalization.StringInfo.Ctor
/// </summary>
public class StringInfoCtor1
{
    #region Public Methods
    public bool RunTests()
    {
        bool retVal = true;

        TestLibrary.TestFramework.LogInformation("[Positive]");
        retVal = PosTest1() && retVal;

        return retVal;
    }

    #region Positive Test Cases
    public bool PosTest1()
    {
        bool retVal = true;

        TestLibrary.TestFramework.BeginScenario("PosTest1: Call constructor to create an instance");

        try
        {
            StringInfo stringInfo = new StringInfo();
            if (stringInfo == null)
            {
                TestLibrary.TestFramework.LogError("001", "The constructor does not create a new instance");
                retVal = false;
            }
            if (stringInfo.String != string.Empty)
            {
                TestLibrary.TestFramework.LogError("002", "The constructor does not work correctly");
                retVal = false;
            }
        }
        catch (Exception e)
        {
            TestLibrary.TestFramework.LogError("003", "Unexpected exception: " + e);
            retVal = false;
        }

        return retVal;
    }
    #endregion

    #region Nagetive Test Cases
    #endregion
    #endregion

    public static int Main()
    {
        StringInfoCtor1 test = new StringInfoCtor1();

        TestLibrary.TestFramework.BeginTestCase("StringInfoCtor1");

        if (test.RunTests())
        {
            TestLibrary.TestFramework.EndTestCase();
            TestLibrary.TestFramework.LogInformation("PASS");
            return 100;
        }
        else
        {
            TestLibrary.TestFramework.EndTestCase();
            TestLibrary.TestFramework.LogInformation("FAIL");
            return 0;
        }
    }
}