21 references to GetProperty
Infrastructure.Common (16)
ConditionalTestDetectors.cs (6)
165
string host = TestProperties.
GetProperty
(TestProperties.ServiceUri_PropertyName);
222
return TestProperties.
GetProperty
(TestProperties.ExplicitUserName_PropertyName);
228
return TestProperties.
GetProperty
(TestProperties.ExplicitPassword_PropertyName);
236
string result = TestProperties.
GetProperty
(TestProperties.NegotiateTestDomain_PropertyName);
248
return TestProperties.
GetProperty
(TestProperties.NegotiateTestUpn_PropertyName);
254
return TestProperties.
GetProperty
(TestProperties.NegotiateTestSpn_PropertyName);
ConditionalWcfTest.cs (1)
60
value = TestProperties.
GetProperty
(conditionName);
ServiceUtilHelper.cs (8)
472
if (TestProperties.
GetProperty
(TestProperties.ServiceUri_PropertyName).Contains("/"))
486
builder.Host = TestProperties.
GetProperty
(TestProperties.ServiceUri_PropertyName);
494
builder.Port = int.Parse(TestProperties.
GetProperty
(TestProperties.ServiceHttpPort_PropertyName));
497
builder.Port = int.Parse(TestProperties.
GetProperty
(TestProperties.ServiceWebSocketPort_PropertyName));
501
builder.Port = int.Parse(TestProperties.
GetProperty
(TestProperties.ServiceHttpsPort_PropertyName));
504
builder.Port = int.Parse(TestProperties.
GetProperty
(TestProperties.ServiceSecureWebSocketPort_PropertyName));
508
builder.Port = int.Parse(TestProperties.
GetProperty
(TestProperties.ServiceTcpPort_PropertyName));
533
string host = TestProperties.
GetProperty
(TestProperties.ServiceUri_PropertyName);
xunit\IssueAttribute.cs (1)
97
string includeTestsWithIssues = TestProperties.
GetProperty
(TestProperties.IncludeTestsWithIssues_PropertyName);
ScenarioTests.Common.Tests (2)
ScenarioTestHelpers.cs (2)
31
string timeSpanAsString = TestProperties.
GetProperty
(TestProperties.MaxTestTimeSpan_PropertyName);
41
string serviceUri = TestProperties.
GetProperty
(TestProperties.ServiceUri_PropertyName);
Security.TransportSecurity.IntegrationTests (3)
Https\ClientCredentialTypeTests.4.1.0.cs (2)
22
s_username = TestProperties.
GetProperty
(TestProperties.ExplicitUserName_PropertyName);
23
s_password = TestProperties.
GetProperty
(TestProperties.ExplicitPassword_PropertyName);
Negotiate\NegotiateStream_Http_Tests.4.1.0.cs (1)
83
if (Environment.Version.Major == 5 && !OSID.AnyWindows.MatchesCurrent() && !TestProperties.
GetProperty
(TestProperties.ServiceUri_PropertyName).Contains("/"))