|
1 | 1 | <Application x:Class="UnitTests.App"
|
2 | 2 | xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
3 | 3 | xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
| 4 | + xmlns:controls="using:Microsoft.Toolkit.Uwp.UI.Controls" |
4 | 5 | xmlns:extensions="using:Microsoft.Toolkit.Uwp.UI.Extensions"
|
| 6 | + xmlns:helpers="using:UnitTests.Extensions.Helpers" |
5 | 7 | xmlns:unitTestExtensions="using:UnitTests.Extensions"
|
6 |
| - RequestedTheme="Light" > |
| 8 | + RequestedTheme="Light"> |
7 | 9 | <Application.Resources>
|
8 | 10 |
|
9 |
| - <!-- Workarounds for .NET Native issue in unit tests --> |
| 11 | + <!-- Workarounds for .NET Native issue in unit tests --> |
10 | 12 | <CommandBar x:Key="DummyCommandBar">
|
11 |
| - <AppBarButton Icon="{extensions:FontIcon Glyph=}"/> |
12 |
| - <AppBarButton Icon="{extensions:SymbolIcon Symbol=Play}"/> |
| 13 | + <AppBarButton Icon="{extensions:FontIcon Glyph=}" /> |
| 14 | + <AppBarButton Icon="{extensions:SymbolIcon Symbol=Play}" /> |
13 | 15 | </CommandBar>
|
14 | 16 |
|
15 |
| - <unitTestExtensions:MockSwipeItem |
16 |
| - x:Key="DummySwipeControl1" |
17 |
| - IconSource="{extensions:FontIconSource Glyph=}"/> |
| 17 | + <unitTestExtensions:MockSwipeItem x:Key="DummySwipeControl1" |
| 18 | + IconSource="{extensions:FontIconSource Glyph=}" /> |
18 | 19 |
|
19 |
| - <unitTestExtensions:MockSwipeItem |
20 |
| - x:Key="DummySwipeControl2" |
21 |
| - IconSource="{extensions:SymbolIconSource Symbol=Play}"/> |
| 20 | + <unitTestExtensions:MockSwipeItem x:Key="DummySwipeControl2" |
| 21 | + IconSource="{extensions:SymbolIconSource Symbol=Play}" /> |
22 | 22 |
|
23 |
| - <unitTestExtensions:MockSwipeItem |
24 |
| - x:Key="DummySwipeControl3" |
25 |
| - IconSource="{extensions:BitmapIconSource Source=/Assets/StoreLogo.png}"/> |
| 23 | + <unitTestExtensions:MockSwipeItem x:Key="DummySwipeControl3" |
| 24 | + IconSource="{extensions:BitmapIconSource Source=/Assets/StoreLogo.png}" /> |
26 | 25 |
|
27 | 26 | <Button x:Key="DummyButton">
|
28 | 27 | <Button.Flyout>
|
|
31 | 30 | </MenuFlyout>
|
32 | 31 | </Button.Flyout>
|
33 | 32 | </Button>
|
| 33 | + |
| 34 | + <Style TargetType="controls:UniformGrid" /> |
| 35 | + <extensions:NullableBool x:Key="nullableBool" /> |
| 36 | + |
| 37 | + <helpers:ObjectWithNullableBoolProperty x:Key="objectWithNullableBoolProperty" /> |
| 38 | + |
34 | 39 | </Application.Resources>
|
35 | 40 | </Application>
|
0 commit comments