27 references to TrxResource
Microsoft.VisualStudio.TestPlatform.Extensions.Trx.TestLogger (27)
ObjectModel\TestElement.cs (3)
11
using TrxLoggerResources = Microsoft.VisualStudio.TestPlatform.Extensions.TrxLogger.Resources.
TrxResource
;
210
_name ??
TrxLoggerResources
.Common_NullInMessages,
211
_id != null ? _id.ToString() :
TrxLoggerResources
.Common_NullInMessages);
ObjectModel\TestListCategory.cs (3)
8
using TrxLoggerResources = Microsoft.VisualStudio.TestPlatform.Extensions.TrxLogger.Resources.
TrxResource
;
70
TrxLoggerResources
.TS_UncategorizedResults, TestListCategoryId.Uncategorized, TestListCategoryId.Root);
90
TrxLoggerResources
.TS_AllResults, TestListCategoryId.AllItems, TestListCategoryId.Root);
ObjectModel\TestResult.cs (2)
15
using TrxLoggerResources = Microsoft.VisualStudio.TestPlatform.Extensions.TrxLogger.Resources.
TrxResource
;
387
throw new InvalidOperationException(
TrxLoggerResources
.Common_MissingRunInResult);
ObjectModel\TestRun.cs (4)
13
using TrxLoggerResources = Microsoft.VisualStudio.TestPlatform.Extensions.TrxLogger.Resources.
TrxResource
;
64
_name = string.Format(CultureInfo.CurrentCulture,
TrxLoggerResources
.Common_TestRunName, Environment.GetEnvironmentVariable("UserName"), Environment.MachineName, FormatDateTimeForRunName(DateTime.Now));
179
throw new Exception(
TrxLoggerResources
.Common_MissingRunConfigInRun);
185
throw new Exception(
TrxLoggerResources
.Common_MissingRunDeploymentRootInRunConfig);
Resources\TrxResource.Designer.cs (1)
42
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Microsoft.VisualStudio.TestPlatform.Extensions.TrxLogger.Resources.TrxResource", typeof(
TrxResource
).Assembly);
TrxLogger.cs (5)
27
using TrxLoggerResources = Microsoft.VisualStudio.TestPlatform.Extensions.TrxLogger.Resources.
TrxResource
;
150
var trxParameterErrorMsg =
TrxLoggerResources
.PrefixAndNameProvidedError;
425
string resultsFileMessage = string.Format(CultureInfo.CurrentCulture,
TrxLoggerResources
.TrxLoggerResultsFile, trxFileName);
454
string message = string.Format(CultureInfo.CurrentCulture,
TrxLoggerResources
.MessageForSkippedTests, testCaseName);
468
var overwriteWarningMsg = string.Format(CultureInfo.CurrentCulture,
TrxLoggerResources
.TrxLoggerResultsFileOverwriteWarning, filePath);
Utility\Converter.cs (3)
18
using TrxLoggerResources = Microsoft.VisualStudio.TestPlatform.Extensions.TrxLogger.Resources.
TrxResource
;
215
TrxLoggerResources
.FailureToAttach,
408
TrxLoggerResources
.FailureToAttach,
Utility\EqtAssert.cs (2)
10
using TrxLoggerResources = Microsoft.VisualStudio.TestPlatform.Extensions.TrxLogger.Resources.
TrxResource
;
66
throw new ArgumentException(
TrxLoggerResources
.Common_CannotBeNullOrEmpty);
Utility\TrxFileHelper.cs (4)
14
using TrxLoggerResources = Microsoft.VisualStudio.TestPlatform.Extensions.TrxLogger.Resources.
TrxResource
;
90
throw new ArgumentException(string.Format(CultureInfo.CurrentCulture,
TrxLoggerResources
.Common_NothingLeftAfterReplaciingBadCharsInName, fileName));
162
throw new Exception(string.Format(CultureInfo.CurrentCulture,
TrxLoggerResources
.Common_CannotGetNextTimestampFileName, fileName, directoryName, timestampFormat));
326
throw new Exception(string.Format(CultureInfo.CurrentCulture,
TrxLoggerResources
.Common_CannotGetNextIterationName, originalName, baseDirectoryName));