Example #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();
        }
Example #2
0
        public void Alphabet_BothCases()
        {
            var source = "abcdefghijklmnopqrstuvwxyz.ABCDEFGHIJKLMNOPQRSTUVWXYZ";

            var actual = L337Command.L337Logic(source);

            Assert.AreEqual("48(d3f6#1j{lmn0p9r57uvw%y2.48(D3F6#1J{LMN0P9R57UVW%Y2", actual);
        }
Example #3
0
        public void SimpleFunctionalityWorksOk()
        {
            var source = "Mixed Case Sentence.";

            var actual = L337Command.L337Logic(source);

            Assert.AreEqual("M1%3d (453 53n73n(3.", actual);
        }
Example #4
0
        public void CanHandleWhiteSpace()
        {
            var actual = L337Command.L337Logic(" ");

            Assert.AreEqual(" ", actual);
        }
Example #5
0
        public void CanHandleEmptyString()
        {
            var actual = L337Command.L337Logic(string.Empty);

            Assert.AreEqual(string.Empty, actual);
        }
Example #6
0
        public void CanHandleNull()
        {
            var actual = L337Command.L337Logic(null);

            Assert.AreEqual(null, actual);
        }