aboutsummaryrefslogtreecommitdiffstats
path: root/tests/Test_Qt.DotNet.Adapter/Test_Qt.DotNet.Adapter.cs
blob: dad1c8604bdce4c6fa1d8a93697cc22eea2d824e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/***************************************************************************************************
 Copyright (C) 2023 The Qt Company Ltd.
 SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
***************************************************************************************************/

using Microsoft.VisualStudio.TestTools.UnitTesting;

namespace Qt.DotNet.Test
{
    [TestClass]
    public class Test_QDotNetAdapter
    {
        [TestMethod]
        public void BuiltInTest()
        {
#if DEBUG || TESTS
            Assert.IsTrue(Adapter.Test());
#endif
        }
    }
}