summaryrefslogtreecommitdiff
path: root/tests/src/Interop/WinRT/NETClients/Primitives/EnumTests.cs
blob: 3830405f3b17b3552d0d910d2b2b052bd1e735f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// 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 TestLibrary;

namespace NetClient
{
    public class EnumTests
    {
        public static void RunTest()
        {
            Component.Contracts.IEnumTesting target = (Component.Contracts.IEnumTesting)WinRTNativeComponent.GetObjectFromNativeComponent("Component.Contracts.EnumTesting");
            Assert.AreEqual(Component.Contracts.TestEnum.A, target.GetA());
            Assert.IsTrue(target.IsB(Component.Contracts.TestEnum.B));
        }
    }
}