本文整理汇总了C#中TestEnvironment.CreateHierarchy方法的典型用法代码示例。如果您正苦于以下问题:C# TestEnvironment.CreateHierarchy方法的具体用法?C# TestEnvironment.CreateHierarchy怎么用?C# TestEnvironment.CreateHierarchy使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类TestEnvironment
的用法示例。
在下文中一共展示了TestEnvironment.CreateHierarchy方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: CreateCSharpProject
public static CSharpProjectShimWithServices CreateCSharpProject(TestEnvironment environment, string projectName)
{
var hierarchy = environment.CreateHierarchy(projectName, "CSharp");
return new CSharpProjectShimWithServices(
new MockCSharpProjectRoot(hierarchy),
environment.ProjectTracker,
reportExternalErrorCreatorOpt: null,
projectSystemName: projectName,
hierarchy: hierarchy,
serviceProvider: environment.ServiceProvider,
visualStudioWorkspaceOpt: null,
hostDiagnosticUpdateSourceOpt: null);
}
示例2: CreateCSharpCPSProject
public static CPSProject CreateCSharpCPSProject(TestEnvironment environment, string projectName, Guid projectGuid, params string[] commandLineArguments)
{
var projectFilePath = Path.GetTempPath();
var hierarchy = environment.CreateHierarchy(projectName, projectFilePath, "CSharp");
var commandLineForOptions = string.Join(" ", commandLineArguments);
return CPSProjectFactory.CreateCPSProject(
environment.ProjectTracker,
environment.ServiceProvider,
hierarchy,
projectName,
projectFilePath,
projectGuid,
LanguageNames.CSharp,
new TestCSharpCommandLineParserService(),
commandLineForOptions);
}
示例3: CreateCSharpCPSProject
public static CPSProject CreateCSharpCPSProject(TestEnvironment environment, string projectName, Guid projectGuid, string projectTypeGuid, params string[] commandLineArguments)
{
var tempPath = Path.GetTempPath();
var projectFilePath = Path.Combine(tempPath, projectName);
var hierarchy = environment.CreateHierarchy(projectName, projectFilePath, "CSharp");
var parsedArguments = GetParsedCommandLineArguments(hierarchy, commandLineArguments);
return CPSProjectFactory.CreateCPSProject(
environment.ProjectTracker,
environment.ServiceProvider,
hierarchy,
projectName,
projectFilePath,
LanguageNames.CSharp,
projectGuid,
projectTypeGuid,
parsedArguments);
}