// // Copyright (c) Microsoft. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. // using Microsoft.SqlTools.ServiceLayer.Utility; using NUnit.Framework; namespace Microsoft.SqlTools.ServiceLayer.UnitTests.ServiceHost { /// /// ScriptFile test case /// public class SrTests { [Test] public void SrStringsTestWithEnLocalization() { string locale = "en"; var args = new string[] { "--locale", locale }; ServiceLayerCommandOptions options = new ServiceLayerCommandOptions(args); Assert.AreEqual(SR.Culture.Name, options.Locale); Assert.AreEqual(options.Locale, locale); var TestLocalizationConstant = SR.TestLocalizationConstant; Assert.AreEqual("test", TestLocalizationConstant); } [Test] public void SrStringsTestWithEsLocalization() { string locale = "es"; var args = new string[] { "--locale", locale }; ServiceLayerCommandOptions options = new ServiceLayerCommandOptions(args); Assert.AreEqual(SR.Culture.Name, options.Locale); Assert.AreEqual(options.Locale, locale); var TestLocalizationConstant = SR.TestLocalizationConstant; Assert.AreEqual("prueba", TestLocalizationConstant); // Reset the locale SrStringsTestWithEnLocalization(); } [Test] public void SrStringsTestWithNullLocalization() { SR.Culture = null; var args = new string[] { "" }; ServiceLayerCommandOptions options = new ServiceLayerCommandOptions(args); Assert.Null(SR.Culture); Assert.AreEqual("", options.Locale); var TestLocalizationConstant = SR.TestLocalizationConstant; Assert.AreEqual("test", TestLocalizationConstant); } } }