GetConfigurationDependentPropertyPages() private method

private GetConfigurationDependentPropertyPages ( ) : global::System.Guid[]
return global::System.Guid[]
Beispiel #1
0
        public void GetConfigurationDependentPropertyPagesTest()
        {
            NestedProjectNode target = projectNode;
            VisualStudio_Project_Samples_NestedProjectNodeAccessor accessor =
                new VisualStudio_Project_Samples_NestedProjectNodeAccessor(target);

            Guid[] expected = new Guid[] { new Guid("C43AD3DC-7468-48e1-B4D2-AAC0C74A0109") };
            Guid[] actual;

            actual = accessor.GetConfigurationDependentPropertyPages();

            CollectionAssert.AreEqual(expected, actual, "Microsoft.VisualStudio.Project.Samples.NestedProject.NestedProjectNode.GetConfigurationDepe" +
                                      "ndentPropertyPages did not return the expected value.");
        }
        public void GetConfigurationDependentPropertyPagesTest()
        {
            NestedProjectNode target = projectNode;
            VisualStudio_Project_Samples_NestedProjectNodeAccessor accessor =
                new VisualStudio_Project_Samples_NestedProjectNodeAccessor(target);

            Guid[] expected = new Guid[] { new Guid("C43AD3DC-7468-48e1-B4D2-AAC0C74A0109") };
            Guid[] actual;

            actual = accessor.GetConfigurationDependentPropertyPages();

            CollectionAssert.AreEqual(expected, actual, "Microsoft.VisualStudio.Project.Samples.NestedProject.NestedProjectNode.GetConfigurationDepe" +
                    "ndentPropertyPages did not return the expected value.");
        }