1
+ // Licensed to the .NET Foundation under one or more agreements.
2
+ // The .NET Foundation licenses this file to you under the MIT license.
3
+ // See the LICENSE file in the project root for more information.
4
+
5
+ using Microsoft . Windows . Apps . Test . Automation ;
6
+ using Microsoft . Windows . Apps . Test . Foundation ;
7
+ using Microsoft . Windows . Apps . Test . Foundation . Controls ;
8
+ using Windows . UI . Xaml . Tests . MUXControls . InteractionTests . Common ;
9
+ using Windows . UI . Xaml . Tests . MUXControls . InteractionTests . Infra ;
10
+
11
+ #if USING_TAEF
12
+ using WEX . Logging . Interop ;
13
+ using WEX . TestExecution ;
14
+ using WEX . TestExecution . Markup ;
15
+ #else
16
+ using Microsoft . VisualStudio . TestTools . UnitTesting ;
17
+ #endif
18
+
19
+ namespace UITests . Tests
20
+ {
21
+ [ TestClass ]
22
+ public class ConstrainedBoxTest : UITestBase
23
+ {
24
+ [ ClassInitialize ]
25
+ [ TestProperty ( "RunAs" , "User" ) ]
26
+ [ TestProperty ( "Classification" , "ScenarioTestSuite" ) ]
27
+ [ TestProperty ( "Platform" , "Any" ) ]
28
+ public static void ClassInitialize ( TestContext testContext )
29
+ {
30
+ TestEnvironment . Initialize ( testContext , WinUICsUWPSampleApp ) ;
31
+ }
32
+
33
+ [ TestMethod ]
34
+ [ TestPage ( "ConstrainedBoxTestPage" ) ]
35
+ public void Test_AspectRatioBoundToInteger_Placeholder ( )
36
+ {
37
+ // The test is if the AspectRatio can be bound to integer
38
+ // This test method acts as a placeholder, to spawn the XAML test page
39
+ // and test the binding to an integer
40
+ }
41
+ }
42
+ }
0 commit comments