本文整理汇总了C#中Microsoft.VisualStudio.TestTools.UnitTesting.TestContext.GetLoadTestUserContext方法的典型用法代码示例。如果您正苦于以下问题:C# TestContext.GetLoadTestUserContext方法的具体用法?C# TestContext.GetLoadTestUserContext怎么用?C# TestContext.GetLoadTestUserContext使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Microsoft.VisualStudio.TestTools.UnitTesting.TestContext
的用法示例。
在下文中一共展示了TestContext.GetLoadTestUserContext方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: GetUserName
protected override string GetUserName(TestContext testContext)
{
// empty user name will use the default user name, this is the case when running as unit tests
var loadTestUserContext = testContext.GetLoadTestUserContext();
return loadTestUserContext != null ?
string.Format("{0}{1}", DefaultNAVUserName, loadTestUserContext.UserId) :
DefaultNAVUserName;
}
示例2: GetTestUserId
/// <summary>
/// Get a unique id for the current virtual user or 0 if there is no load test context
/// </summary>
/// <param name="testContext">current test context</param>
/// <returns></returns>
protected static int GetTestUserId(TestContext testContext)
{
LoadTestUserContext loadTestUserContext = testContext.GetLoadTestUserContext();
return (loadTestUserContext != null) ? loadTestUserContext.UserId : 0;
}