[Category("SkipOnTeamCity")] // TeamCity build agents don't have TSF enabled
		public void Languages()
		{
			var adaptor = new WinKeyboardAdaptorDouble();

			var lcids = new List<int>();
			foreach (InputLanguage lang in InputLanguage.InstalledInputLanguages)
			{
				if (!lcids.Contains(lang.Culture.LCID))
					lcids.Add(lang.Culture.LCID);
			}
			Assert.That(adaptor.GetLanguages(), Is.EquivalentTo(lcids));
		}
Ejemplo n.º 2
0
        [Category("SkipOnTeamCity")]         // TeamCity build agents don't have TSF enabled
        public void Languages()
        {
            var adaptor = new WinKeyboardAdaptorDouble();

            var lcids = new List <int>();

            foreach (InputLanguage lang in InputLanguage.InstalledInputLanguages)
            {
                if (!lcids.Contains(lang.Culture.LCID))
                {
                    lcids.Add(lang.Culture.LCID);
                }
            }
            Assert.That(adaptor.GetLanguages(), Is.EquivalentTo(lcids));
        }
Ejemplo n.º 3
0
		[Category("SkipOnTeamCity")] // TeamCity build agents don't have TSF enabled
		public void Languages()
		{
			var adaptor = new WinKeyboardAdaptorDouble();

			var lcids = new List<int>();
			foreach (InputLanguage lang in InputLanguage.InstalledInputLanguages)
			{
				if (!lcids.Contains(lang.Culture.LCID))
					lcids.Add(lang.Culture.LCID);
			}
			// This test can fail if a Keyman keyboard is installed but
			// keyman is not running
			Assert.That(adaptor.GetLanguages(), Is.EquivalentTo(lcids),
				"WinKeyboardAdaptor.GetLanguages returned a different set of languages from what " +
				"we get from Windows. This can happen if a Keyman keyboard is installed in the " +
				"system but Keyman is not running.");
		}
        [Category("SkipOnTeamCity")]         // TeamCity build agents don't have TSF enabled
        public void Languages()
        {
            var adaptor = new WinKeyboardAdaptorDouble();

            var lcids = new List <int>();

            foreach (InputLanguage lang in InputLanguage.InstalledInputLanguages)
            {
                if (!lcids.Contains(lang.Culture.LCID))
                {
                    lcids.Add(lang.Culture.LCID);
                }
            }
            // This test can fail if a Keyman keyboard is installed but
            // keyman is not running
            Assert.That(adaptor.GetLanguages(), Is.EquivalentTo(lcids),
                        "WinKeyboardAdaptor.GetLanguages returned a different set of languages from what " +
                        "we get from Windows. This can happen if a Keyman keyboard is installed in the " +
                        "system but Keyman is not running.");
        }