16 references to IsNullOrEmpty
Microsoft.TestPlatform.CoreUtilities (3)
Extensions\StringBuilderExtensions.cs (1)
19
if (data.
IsNullOrEmpty
())
Helpers\EnvironmentHelper.cs (1)
22
if (!envVarValue.
IsNullOrEmpty
() && int.TryParse(envVarValue, out int value) && value >= 0)
ValidateArg.cs (1)
60
return arg.
IsNullOrEmpty
() ? throw new ArgumentNullException(parameterName) : arg;
Microsoft.VisualStudio.TestPlatform.ObjectModel (13)
ConnectionInfo\TestRunnerConnectionInfoExtensions.cs (1)
21
if (!StringUtils.
IsNullOrEmpty
(connectionInfo.LogFile))
DataCollector\Common\FileHelper.cs (1)
62
if (fileName.
IsNullOrEmpty
())
Navigation\FullSymbolReader.cs (2)
132
if (StringUtils.
IsNullOrEmpty
(searchPath))
455
TPDebug.Assert(!StringUtils.
IsNullOrEmpty
(methodName), "MethodName cannot be empty.");
RunSettings\RunConfiguration.cs (5)
564
if (!StringUtils.
IsNullOrEmpty
(TargetDevice))
571
if (!StringUtils.
IsNullOrEmpty
(TestCaseFilter))
578
if (!StringUtils.
IsNullOrEmpty
(DotnetHostPath))
642
if (StringUtils.
IsNullOrEmpty
(resultsDir))
900
if (solutionDirectory.
IsNullOrEmpty
()
TestCase.cs (1)
111
get => _displayName.
IsNullOrEmpty
() ? GetFullyQualifiedName() : _displayName;
TestResult.cs (2)
151
if (!StringUtils.
IsNullOrEmpty
(message?.Category) && !StringUtils.
IsNullOrEmpty
(message.Text))
Utilities\StringUtilities.cs (1)
43
return input.
IsNullOrEmpty
();