Exemplo n.º 1
0
        public void GetMSBuildProjectReferencesFullPath_ValidInput(string project, IEnumerable <string> expected)
        {
            IEnumerable <string> actual = MSBuildUtilities.GetMSBuildProjectReferencesFullPath(project);

            Assert.That(actual, Is.EquivalentTo(expected));
        }
Exemplo n.º 2
0
        public void ProjectsIncludingNOrderDependencies_ValidInput(IEnumerable <string> projects, IEnumerable <string> expected)
        {
            IEnumerable <string> actual = MSBuildUtilities.ProjectsIncludingNOrderDependencies(projects);

            Assert.That(actual, Is.EquivalentTo(expected));
        }
Exemplo n.º 3
0
        public void AssemblyReferences(string targetProject, IEnumerable <string> expected)
        {
            IEnumerable <string> actual = MSBuildUtilities.AssemblyReferences(targetProject);

            Assert.That(actual, Is.EquivalentTo(expected));
        }