Beispiel #1
0
            public void Spec04()
            {
                using (var testable = new OnFolderNodeIgnoreTestable())
                {
                    testable.Initialize();
                    testable.MenuCommand.Invoke(testable.MenuCommand);

                    testable.Verify <IVisualStudioJSLintProvider>(x => x.SaveSettings(testable.ProjectMock.Object, testable.Settings));
                }
            }
Beispiel #2
0
            public void Spec01()
            {
                using (var testable = new OnFolderNodeIgnoreTestable())
                {
                    testable.Settings.Ignore.Add(@"SOME\PATH\TO\");

                    testable.Initialize();
                    testable.MenuCommand.Invoke(testable.MenuCommand);

                    I.Expect(testable.Settings.Ignore).Not.ToContain(@"SOME\PATH\TO\");
                }
            }
Beispiel #3
0
            public void Spec03()
            {
                using (var testable = new OnFolderNodeIgnoreTestable())
                {
                    testable.Settings.Ignore.Add(@"/SOME/PATH/");

                    testable.Initialize();
                    testable.MenuCommand.Invoke(testable.MenuCommand);

                    I.Expect(testable.Settings.Ignore).ToContain(@"\some\path\to\");
                }
            }
Beispiel #4
0
            public void Spec02()
            {
                using (var testable = new OnFolderNodeIgnoreTestable())
                {
                    testable.Settings.Ignore.Add(@"/SOME/PATH/TO/");

                    testable.Init();
                    testable.MenuCommand.Invoke(testable.MenuCommand);

                    I.Expect(testable.Settings.Ignore).Not.ToContain(@"/SOME/PATH/TO/");
                }
            }