forked from microsoft/microsoft-ui-xaml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLocalizationTests.cs
54 lines (47 loc) · 1.78 KB
/
LocalizationTests.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See LICENSE in the project root for license information.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using MUXControlsTestApp.Utilities;
using Windows.UI.Xaml;
using Windows.UI.Xaml.Controls;
using Windows.UI.Xaml.Media;
using Windows.UI;
using Windows.ApplicationModel.Resources;
using Windows.ApplicationModel.Resources.Core;
using Common;
#if USING_TAEF
using WEX.TestExecution;
using WEX.TestExecution.Markup;
using WEX.Logging.Interop;
#else
using Microsoft.VisualStudio.TestTools.UnitTesting;
using Microsoft.VisualStudio.TestTools.UnitTesting.Logging;
#endif
namespace Windows.UI.Xaml.Tests.MUXControls.ApiTests
{
[TestClass]
public class LocalizationTests : ApiTestBase
{
[TestMethod]
public void VerifyLanguages()
{
RunOnUIThread.Execute(() =>
{
ResourceContext context = new ResourceContext();
context.QualifierValues["language"] = "en-US";
var resource = ResourceManager.Current.MainResourceMap["/Microsoft.UI.Xaml/Resources/PersonName"];
var candidate = resource.Resolve(context);
Log.Comment("Candidate = {0}", candidate.ValueAsString);
Verify.AreEqual("Person", candidate.ValueAsString, "Checking en-us string");
context.QualifierValues["language"] = "fr-FR";
candidate = resource.Resolve(context);
Verify.AreEqual("Personne", candidate.ValueAsString, "Checking fr-FR string");
});
Log.Comment("LocalizationTests complete"); // Extra logging for infra issue with subsequent tests
}
}
}