forked from microsoft/CsWinRT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWinUITest.net5.cs
39 lines (34 loc) · 895 Bytes
/
WinUITest.net5.cs
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
using System;
using System.Diagnostics;
using System.Linq;
using System.Runtime.InteropServices;
using System.Security.Cryptography;
using System.Text;
using Xunit;
using WinRT;
using Windows.Foundation;
using Windows.Foundation.Collections;
using Microsoft.UI.Xaml;
using Microsoft.UI.Xaml.Controls;
namespace UnitTest
{
public class TestWinUI
{
public TestWinUI()
{
}
public class App : Microsoft.UI.Xaml.Application
{
}
// Compile time test to ensure multiple allowed attributes
[TemplatePart(Name = "PartButton", Type = typeof(Button))]
[TemplatePart(Name = "PartGrid", Type = typeof(Grid))]
public class TestAllowMultipleAttributes { };
[Fact]
public void TestApp()
{
// TODO: load up some MUX!
//Assert.Equal(true, true);
}
}
}