コード例 #1
0
        /// <summary>
        /// Initialization of the package; this method is called right after the package is sited, so this is the place
        /// where you can put all the initialization code that rely on services provided by VisualStudio.
        /// </summary>
        /// <param name="cancellationToken">A cancellation token to monitor for initialization cancellation, which can occur when VS is shutting down.</param>
        /// <param name="progress">A provider for progress updates.</param>
        /// <returns>A task representing the async work of package initialization, or an already completed task if there is none. Do not return null from this method.</returns>
        protected override async Task InitializeAsync(CancellationToken cancellationToken, IProgress <ServiceProgressData> progress)
        {
            // When initialized asynchronously, the current thread may be a background thread at this point.
            // Do any initialization that requires the UI thread after switching to the UI thread.
            await this.JoinableTaskFactory.SwitchToMainThreadAsync(cancellationToken);

            await SurroundCommand.InitializeAsync(this);

            await ReverseCommand.InitializeAsync(this);

            await PaddingCommand.InitializeAsync(this);

            await InvertCaseCommand.InitializeAsync(this);

            await DiacriticsCommand.InitializeAsync(this);

            await DoubleCommand.InitializeAsync(this);

            await UppercaseCommand.InitializeAsync(this);

            await XxxxxCommand.InitializeAsync(this);

            await L337Command.InitializeAsync(this);

            await AlternateCaseCommand.InitializeAsync(this);

            await SponsorRequestHelper.CheckIfNeedToShowAsync();
        }
コード例 #2
0
ファイル: XxxxxTests.cs プロジェクト: mrlacey/ResPsuedoLoc
        public void SimpleFunctionalityWorksOk()
        {
            var source = "Mixed Case Sentence.";

            var actual = XxxxxCommand.XxxxxLogic(source);

            Assert.AreEqual("Xxxxx Xxxx Xxxxxxxx.", actual);
        }
コード例 #3
0
ファイル: XxxxxTests.cs プロジェクト: mrlacey/ResPsuedoLoc
        public void CanHandleWhiteSpace()
        {
            var actual = XxxxxCommand.XxxxxLogic(" ");

            Assert.AreEqual(" ", actual);
        }
コード例 #4
0
ファイル: XxxxxTests.cs プロジェクト: mrlacey/ResPsuedoLoc
        public void CanHandleEmptyString()
        {
            var actual = XxxxxCommand.XxxxxLogic(string.Empty);

            Assert.AreEqual(string.Empty, actual);
        }
コード例 #5
0
ファイル: XxxxxTests.cs プロジェクト: mrlacey/ResPsuedoLoc
        public void CanHandleNull()
        {
            var actual = XxxxxCommand.XxxxxLogic(null);

            Assert.AreEqual(null, actual);
        }
コード例 #6
0
ファイル: XxxxxTests.cs プロジェクト: mrlacey/ResPsuedoLoc
        public void CanHandleCyrillic()
        {
            var actual = XxxxxCommand.XxxxxLogic("Матт");

            Assert.AreEqual("Xxxx", actual);
        }
コード例 #7
0
ファイル: XxxxxTests.cs プロジェクト: mrlacey/ResPsuedoLoc
        public void CanHandleNonAscii()
        {
            var actual = XxxxxCommand.XxxxxLogic("mrläÄcey");

            Assert.AreEqual("xxxxXxxx", actual);
        }