22 references to Create
Microsoft.CodeAnalysis.EditorFeatures.Test.Utilities (1)
Microsoft.CodeAnalysis.EditorFeatures.UnitTests (4)
Microsoft.CodeAnalysis.Remote.Workspaces (1)
Microsoft.CodeAnalysis.Workspaces (5)
Microsoft.CodeAnalysis.Workspaces.UnitTests (8)
SolutionTests\SolutionInfoTests.cs (7)
23Assert.Throws<ArgumentNullException>(() => SolutionInfo.Create(null, version));
24Assert.Throws<ArgumentNullException>(() => SolutionInfo.Create(solutionId, version, projects: new[] { projectInfo, null }));
34var info1 = SolutionInfo.Create(solutionId, version, projects: new[] { projectInfo });
37var info2 = SolutionInfo.Create(solutionId, version);
40var info3 = SolutionInfo.Create(solutionId, version, projects: new ProjectInfo[0]);
43var info4 = SolutionInfo.Create(solutionId, version, projects: ImmutableArray<ProjectInfo>.Empty);
53var info = SolutionInfo.Create(SolutionId.CreateNewId(), VersionStamp.Default, filePath: path);
Microsoft.VisualStudio.LanguageServices.CSharp.UnitTests (2)
Roslyn.VisualStudio.Next.UnitTests (1)