Skip to content

Commit 977b2b7

Browse files
authored
Port RabbitMQ integration tests to use ConsoleMultiFunction test apps (newrelic#398)
* Add SharedApplications to unbounded solution * Initial forklift of controller methods from rabbit web test app to ConsoleMF library * Convert RabbitMqTests to use ConsoleMF app (just FW for now) * Convert RabbitMqDistributedTracingTests to use ConsoleMF app (FW only for now) * Convert RabbitMqW3cTracingTests to use ConsoleMF FW app * Multitargeting working for rabbitmq 3.5.1 and 5.1.0 in .NET framework * Multitarget RabbitMqDistributedTracingTests * Update tests in IntegrationTests to use the "latest" version of ConsoleMFAppFW * Remove RabbitMq web test apps and fixture * Get rabbitmq 5.1 included in three different netcoreapp versions * Add .net core test (using client version 5.1.0) for base and DT rabbit tests * Clean up RabbitMQ library * Update "latest" version of ConsoleMFAppCore to 3.1 * Remove commented-out package reference * Add comment explaining what is going on with rabbit versions
1 parent 8820413 commit 977b2b7

File tree

49 files changed

+489
-1549
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+489
-1549
lines changed

tests/Agent/IntegrationTests/IntegrationTestHelpers/IntegrationTestHelpers.csproj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
<ItemGroup>
88
<PackageReference Include="NewRelic.Agent.Api" Version="8.36.0" />
99
<PackageReference Include="Newtonsoft.Json" Version="12.0.2" />
10-
<PackageReference Include="RabbitMQ.Client" Version="5.1.0" />
1110
<PackageReference Include="SharpZipLib" Version="1.1.0" />
1211
<PackageReference Include="xunit" version="2.4.0" />
1312
<PackageReference Include="xunit.assert" Version="2.4.0" />

tests/Agent/IntegrationTests/IntegrationTestHelpers/RabbitMqUtils.cs

Lines changed: 0 additions & 33 deletions
This file was deleted.

tests/Agent/IntegrationTests/IntegrationTests/AgentFeatures/ConfigBuilderDeadlock.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@
1010

1111
namespace NewRelic.Agent.IntegrationTests.AgentFeatures
1212
{
13-
public class ConfigBuilderDeadlock : NewRelicIntegrationTest<ConsoleDynamicMethodFixtureFW>
13+
public class ConfigBuilderDeadlock : NewRelicIntegrationTest<ConsoleDynamicMethodFixtureFWLatest>
1414
{
15-
protected readonly ConsoleDynamicMethodFixtureFW _fixture;
15+
protected readonly ConsoleDynamicMethodFixtureFWLatest _fixture;
1616

17-
public ConfigBuilderDeadlock(ConsoleDynamicMethodFixtureFW fixture, ITestOutputHelper output) : base(fixture)
17+
public ConfigBuilderDeadlock(ConsoleDynamicMethodFixtureFWLatest fixture, ITestOutputHelper output) : base(fixture)
1818
{
1919
_fixture = fixture;
2020
_fixture.TestLogger = output;

tests/Agent/IntegrationTests/IntegrationTests/AgentMetrics/DotNetPerfMetricsTests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ namespace NewRelic.Agent.IntegrationTests.AgentMetrics
1313
{
1414

1515
[NetFrameworkTest]
16-
public class DotNetPerfMetricsTestsFW : DotNetPerfMetricsTests<ConsoleDynamicMethodFixtureFW>
16+
public class DotNetPerfMetricsTestsFW : DotNetPerfMetricsTests<ConsoleDynamicMethodFixtureFWLatest>
1717
{
18-
public DotNetPerfMetricsTestsFW(ConsoleDynamicMethodFixtureFW fixture, ITestOutputHelper output)
18+
public DotNetPerfMetricsTestsFW(ConsoleDynamicMethodFixtureFWLatest fixture, ITestOutputHelper output)
1919
: base(fixture, output)
2020
{
2121
}

tests/Agent/IntegrationTests/IntegrationTests/Api/ApiCallsTests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@
1212
namespace NewRelic.Agent.IntegrationTests.Api
1313
{
1414
[NetFrameworkTest]
15-
public class ApiCallsTestsFW : ApiCallsTests<ConsoleDynamicMethodFixtureFW>
15+
public class ApiCallsTestsFW : ApiCallsTests<ConsoleDynamicMethodFixtureFWLatest>
1616
{
17-
public ApiCallsTestsFW(ConsoleDynamicMethodFixtureFW fixture, ITestOutputHelper output)
17+
public ApiCallsTestsFW(ConsoleDynamicMethodFixtureFWLatest fixture, ITestOutputHelper output)
1818
: base(fixture, output)
1919
{
2020
}

tests/Agent/IntegrationTests/IntegrationTests/BasicInstrumentation/NetStandardLibraryInstrumentation.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@
1414
namespace NewRelic.Agent.IntegrationTests.BasicInstrumentation
1515
{
1616
[NetFrameworkTest]
17-
public class NetStandardLibraryInstrumentationFW : NetStandardLibraryInstrumentation<ConsoleDynamicMethodFixtureFW>
17+
public class NetStandardLibraryInstrumentationFW : NetStandardLibraryInstrumentation<ConsoleDynamicMethodFixtureFWLatest>
1818
{
19-
public NetStandardLibraryInstrumentationFW(ConsoleDynamicMethodFixtureFW fixture, ITestOutputHelper output) : base(fixture, output)
19+
public NetStandardLibraryInstrumentationFW(ConsoleDynamicMethodFixtureFWLatest fixture, ITestOutputHelper output) : base(fixture, output)
2020
{
2121
}
2222
}

tests/Agent/IntegrationTests/IntegrationTests/DataTransmission/FasterEventHarvestTests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@
1212
namespace NewRelic.Agent.IntegrationTests.DataTransmission
1313
{
1414
[NetFrameworkTest]
15-
public class FasterEventHarvestNetFrameworkTests : FasterEventHarvestTests<ConsoleDynamicMethodFixtureFW>
15+
public class FasterEventHarvestNetFrameworkTests : FasterEventHarvestTests<ConsoleDynamicMethodFixtureFWLatest>
1616
{
17-
public FasterEventHarvestNetFrameworkTests(ConsoleDynamicMethodFixtureFW fixture, ITestOutputHelper output) : base(fixture, output)
17+
public FasterEventHarvestNetFrameworkTests(ConsoleDynamicMethodFixtureFWLatest fixture, ITestOutputHelper output) : base(fixture, output)
1818
{
1919
}
2020
}

tests/Agent/IntegrationTests/IntegrationTests/DistributedTracing/W3CInstrumentationTests/W3CValidation.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,11 +46,11 @@ namespace NewRelic.Agent.IntegrationTests.DistributedTracing.W3CInstrumentationT
4646
/// This makes troubleshooting a bit more difficult since you have to dig through the output for the test and find the failures.
4747
/// </summary>
4848
[NetFrameworkTest]
49-
public class W3CValidation : NewRelicIntegrationTest<ConsoleDynamicMethodFixtureFW>
49+
public class W3CValidation : NewRelicIntegrationTest<ConsoleDynamicMethodFixtureFWLatest>
5050
{
51-
protected readonly ConsoleDynamicMethodFixtureFW _fixture;
51+
protected readonly ConsoleDynamicMethodFixtureFWLatest _fixture;
5252

53-
public W3CValidation(ConsoleDynamicMethodFixtureFW fixture, ITestOutputHelper output) : base(fixture)
53+
public W3CValidation(ConsoleDynamicMethodFixtureFWLatest fixture, ITestOutputHelper output) : base(fixture)
5454
{
5555
_fixture = fixture;
5656
_fixture.TestLogger = output;

tests/Agent/IntegrationTests/IntegrationTests/WCF/WCFClientTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public abstract class WCFClientTestBase : WCFTestBase
2222
protected override int _expectedTransactionCount_Service => _countClientInvocationMethodsToTest * COUNT_SVC_METHODS; //2 methods being called (getdata, throwException)
2323
protected bool _thereWereCATFailures => LogHelpers.TrxTripIDs_Client.Except(LogHelpers.TrxIDs_Client).Any();
2424

25-
public WCFClientTestBase(ConsoleDynamicMethodFixtureFW fixture, ITestOutputHelper output, WCFBindingType bindingToTest, TracingTestOption tracingTestOption, HostingModel hostingTestOption, ASPCompatibilityMode aspCompatModeOption, IWCFLogHelpers logHelpersImpl)
25+
public WCFClientTestBase(ConsoleDynamicMethodFixtureFWLatest fixture, ITestOutputHelper output, WCFBindingType bindingToTest, TracingTestOption tracingTestOption, HostingModel hostingTestOption, ASPCompatibilityMode aspCompatModeOption, IWCFLogHelpers logHelpersImpl)
2626
: base(fixture, output, bindingToTest, _instrumentedClientInvocMethods, new[] { WCFInvocationMethod.Sync }, tracingTestOption, hostingTestOption, aspCompatModeOption, logHelpersImpl)
2727
{
2828
}

tests/Agent/IntegrationTests/IntegrationTests/WCF/WCFClientTests_IISHosted.cs

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ namespace NewRelic.Agent.IntegrationTests.WCF.Client.IIS
1212

1313
public abstract class WCFClient_IIS : WCFClientTestBase
1414
{
15-
public WCFClient_IIS(ConsoleDynamicMethodFixtureFW fixture, ITestOutputHelper output, WCFBindingType bindingType, TracingTestOption tracingTestOption, ASPCompatibilityMode aspCompatOption)
15+
public WCFClient_IIS(ConsoleDynamicMethodFixtureFWLatest fixture, ITestOutputHelper output, WCFBindingType bindingType, TracingTestOption tracingTestOption, ASPCompatibilityMode aspCompatOption)
1616
: base(fixture, output, bindingType, tracingTestOption, HostingModel.IIS, aspCompatOption, new WCFLogHelpers_IISHosted(fixture))
1717
{
1818
}
@@ -23,7 +23,7 @@ namespace NewRelic.Agent.IntegrationTests.WCF.Client.IIS.ASPDisabled
2323
{
2424
public abstract class WCFClient_IIS_ASPDisabled : WCFClient_IIS
2525
{
26-
public WCFClient_IIS_ASPDisabled(ConsoleDynamicMethodFixtureFW fixture, ITestOutputHelper output, WCFBindingType bindingType, TracingTestOption tracingTestOption)
26+
public WCFClient_IIS_ASPDisabled(ConsoleDynamicMethodFixtureFWLatest fixture, ITestOutputHelper output, WCFBindingType bindingType, TracingTestOption tracingTestOption)
2727
: base(fixture, output, bindingType, tracingTestOption, ASPCompatibilityMode.Disabled)
2828
{
2929
}
@@ -32,7 +32,7 @@ public WCFClient_IIS_ASPDisabled(ConsoleDynamicMethodFixtureFW fixture, ITestOut
3232
[NetFrameworkTest]
3333
public class WCFClient_IIS_WebHTTP_ASPDiabled : WCFClient_IIS_ASPDisabled
3434
{
35-
public WCFClient_IIS_WebHTTP_ASPDiabled(ConsoleDynamicMethodFixtureFW fixture, ITestOutputHelper output)
35+
public WCFClient_IIS_WebHTTP_ASPDiabled(ConsoleDynamicMethodFixtureFWLatest fixture, ITestOutputHelper output)
3636
: base(fixture, output, WCFBindingType.WebHttp, TracingTestOption.None)
3737
{
3838
}
@@ -41,7 +41,7 @@ public WCFClient_IIS_WebHTTP_ASPDiabled(ConsoleDynamicMethodFixtureFW fixture, I
4141
[NetFrameworkTest]
4242
public class WCFClient_IIS_WSHTTP_ASPDisabled : WCFClient_IIS_ASPDisabled
4343
{
44-
public WCFClient_IIS_WSHTTP_ASPDisabled(ConsoleDynamicMethodFixtureFW fixture, ITestOutputHelper output)
44+
public WCFClient_IIS_WSHTTP_ASPDisabled(ConsoleDynamicMethodFixtureFWLatest fixture, ITestOutputHelper output)
4545
: base(fixture, output, WCFBindingType.WSHttp, TracingTestOption.None)
4646
{
4747
}
@@ -50,7 +50,7 @@ public WCFClient_IIS_WSHTTP_ASPDisabled(ConsoleDynamicMethodFixtureFW fixture, I
5050
[NetFrameworkTest]
5151
public class WCFClient_IIS_BasicHTTP_ASPDisabled : WCFClient_IIS_ASPDisabled
5252
{
53-
public WCFClient_IIS_BasicHTTP_ASPDisabled(ConsoleDynamicMethodFixtureFW fixture, ITestOutputHelper output)
53+
public WCFClient_IIS_BasicHTTP_ASPDisabled(ConsoleDynamicMethodFixtureFWLatest fixture, ITestOutputHelper output)
5454
: base(fixture, output, WCFBindingType.BasicHttp, TracingTestOption.None)
5555
{
5656
}
@@ -59,7 +59,7 @@ public WCFClient_IIS_BasicHTTP_ASPDisabled(ConsoleDynamicMethodFixtureFW fixture
5959
[NetFrameworkTest]
6060
public class WCFClient_IIS_WebHTTP_DT_ASPDisabled : WCFClient_IIS_ASPDisabled
6161
{
62-
public WCFClient_IIS_WebHTTP_DT_ASPDisabled(ConsoleDynamicMethodFixtureFW fixture, ITestOutputHelper output)
62+
public WCFClient_IIS_WebHTTP_DT_ASPDisabled(ConsoleDynamicMethodFixtureFWLatest fixture, ITestOutputHelper output)
6363
: base(fixture, output, WCFBindingType.WebHttp, TracingTestOption.DT)
6464
{
6565
}
@@ -68,7 +68,7 @@ public WCFClient_IIS_WebHTTP_DT_ASPDisabled(ConsoleDynamicMethodFixtureFW fixtur
6868
[NetFrameworkTest]
6969
public class WCFClient_IIS_WSHTTP_DT_ASPDisasbled : WCFClient_IIS_ASPDisabled
7070
{
71-
public WCFClient_IIS_WSHTTP_DT_ASPDisasbled(ConsoleDynamicMethodFixtureFW fixture, ITestOutputHelper output)
71+
public WCFClient_IIS_WSHTTP_DT_ASPDisasbled(ConsoleDynamicMethodFixtureFWLatest fixture, ITestOutputHelper output)
7272
: base(fixture, output, WCFBindingType.WSHttp, TracingTestOption.DT)
7373
{
7474
}
@@ -77,7 +77,7 @@ public WCFClient_IIS_WSHTTP_DT_ASPDisasbled(ConsoleDynamicMethodFixtureFW fixtur
7777
[NetFrameworkTest]
7878
public class WCFClient_IIS_BasicHTTP_DT_ASPDisabled : WCFClient_IIS_ASPDisabled
7979
{
80-
public WCFClient_IIS_BasicHTTP_DT_ASPDisabled(ConsoleDynamicMethodFixtureFW fixture, ITestOutputHelper output)
80+
public WCFClient_IIS_BasicHTTP_DT_ASPDisabled(ConsoleDynamicMethodFixtureFWLatest fixture, ITestOutputHelper output)
8181
: base(fixture, output, WCFBindingType.BasicHttp, TracingTestOption.DT)
8282
{
8383
}
@@ -86,7 +86,7 @@ public WCFClient_IIS_BasicHTTP_DT_ASPDisabled(ConsoleDynamicMethodFixtureFW fixt
8686
[NetFrameworkTest]
8787
public class WCFClient_IIS_WebHTTP_CAT_AspDisabled : WCFClient_IIS_ASPDisabled
8888
{
89-
public WCFClient_IIS_WebHTTP_CAT_AspDisabled(ConsoleDynamicMethodFixtureFW fixture, ITestOutputHelper output)
89+
public WCFClient_IIS_WebHTTP_CAT_AspDisabled(ConsoleDynamicMethodFixtureFWLatest fixture, ITestOutputHelper output)
9090
: base(fixture, output, WCFBindingType.WebHttp, TracingTestOption.CAT)
9191
{
9292
}
@@ -95,7 +95,7 @@ public WCFClient_IIS_WebHTTP_CAT_AspDisabled(ConsoleDynamicMethodFixtureFW fixtu
9595
[NetFrameworkTest]
9696
public class WCFClient_IIS_WSHTTP_CAT_ASPDisabled : WCFClient_IIS_ASPDisabled
9797
{
98-
public WCFClient_IIS_WSHTTP_CAT_ASPDisabled(ConsoleDynamicMethodFixtureFW fixture, ITestOutputHelper output)
98+
public WCFClient_IIS_WSHTTP_CAT_ASPDisabled(ConsoleDynamicMethodFixtureFWLatest fixture, ITestOutputHelper output)
9999
: base(fixture, output, WCFBindingType.WSHttp, TracingTestOption.CAT)
100100
{
101101
}
@@ -104,7 +104,7 @@ public WCFClient_IIS_WSHTTP_CAT_ASPDisabled(ConsoleDynamicMethodFixtureFW fixtur
104104
[NetFrameworkTest]
105105
public class WCFClient_IIS_BasicHTTP_CAT_ASPDisabled : WCFClient_IIS_ASPDisabled
106106
{
107-
public WCFClient_IIS_BasicHTTP_CAT_ASPDisabled(ConsoleDynamicMethodFixtureFW fixture, ITestOutputHelper output)
107+
public WCFClient_IIS_BasicHTTP_CAT_ASPDisabled(ConsoleDynamicMethodFixtureFWLatest fixture, ITestOutputHelper output)
108108
: base(fixture, output, WCFBindingType.BasicHttp, TracingTestOption.CAT)
109109
{
110110
}
@@ -116,7 +116,7 @@ namespace NewRelic.Agent.IntegrationTests.WCF.Client.IIS.ASPEnabled
116116
{
117117
public abstract class WCFClient_IIS_ASPEnabled : WCFClient_IIS
118118
{
119-
public WCFClient_IIS_ASPEnabled(ConsoleDynamicMethodFixtureFW fixture, ITestOutputHelper output, WCFBindingType bindingType, TracingTestOption tracingTestOption)
119+
public WCFClient_IIS_ASPEnabled(ConsoleDynamicMethodFixtureFWLatest fixture, ITestOutputHelper output, WCFBindingType bindingType, TracingTestOption tracingTestOption)
120120
: base(fixture, output, bindingType, tracingTestOption, ASPCompatibilityMode.Enabled)
121121
{
122122
}
@@ -125,7 +125,7 @@ public WCFClient_IIS_ASPEnabled(ConsoleDynamicMethodFixtureFW fixture, ITestOutp
125125
[NetFrameworkTest]
126126
public class WCFClient_IIS_WebHTTP_ASPDiabled : WCFClient_IIS_ASPEnabled
127127
{
128-
public WCFClient_IIS_WebHTTP_ASPDiabled(ConsoleDynamicMethodFixtureFW fixture, ITestOutputHelper output)
128+
public WCFClient_IIS_WebHTTP_ASPDiabled(ConsoleDynamicMethodFixtureFWLatest fixture, ITestOutputHelper output)
129129
: base(fixture, output, WCFBindingType.WebHttp, TracingTestOption.None)
130130
{
131131
}
@@ -134,7 +134,7 @@ public WCFClient_IIS_WebHTTP_ASPDiabled(ConsoleDynamicMethodFixtureFW fixture, I
134134
[NetFrameworkTest]
135135
public class WCFClient_IIS_WSHTTP_ASPEnabled : WCFClient_IIS_ASPEnabled
136136
{
137-
public WCFClient_IIS_WSHTTP_ASPEnabled(ConsoleDynamicMethodFixtureFW fixture, ITestOutputHelper output)
137+
public WCFClient_IIS_WSHTTP_ASPEnabled(ConsoleDynamicMethodFixtureFWLatest fixture, ITestOutputHelper output)
138138
: base(fixture, output, WCFBindingType.WSHttp, TracingTestOption.None)
139139
{
140140
}
@@ -143,7 +143,7 @@ public WCFClient_IIS_WSHTTP_ASPEnabled(ConsoleDynamicMethodFixtureFW fixture, IT
143143
[NetFrameworkTest]
144144
public class WCFClient_IIS_BasicHTTP_ASPEnabled : WCFClient_IIS_ASPEnabled
145145
{
146-
public WCFClient_IIS_BasicHTTP_ASPEnabled(ConsoleDynamicMethodFixtureFW fixture, ITestOutputHelper output)
146+
public WCFClient_IIS_BasicHTTP_ASPEnabled(ConsoleDynamicMethodFixtureFWLatest fixture, ITestOutputHelper output)
147147
: base(fixture, output, WCFBindingType.BasicHttp, TracingTestOption.None)
148148
{
149149
}
@@ -152,7 +152,7 @@ public WCFClient_IIS_BasicHTTP_ASPEnabled(ConsoleDynamicMethodFixtureFW fixture,
152152
[NetFrameworkTest]
153153
public class WCFClient_IIS_WebHTTP_DT_ASPEnabled : WCFClient_IIS_ASPEnabled
154154
{
155-
public WCFClient_IIS_WebHTTP_DT_ASPEnabled(ConsoleDynamicMethodFixtureFW fixture, ITestOutputHelper output)
155+
public WCFClient_IIS_WebHTTP_DT_ASPEnabled(ConsoleDynamicMethodFixtureFWLatest fixture, ITestOutputHelper output)
156156
: base(fixture, output, WCFBindingType.WebHttp, TracingTestOption.DT)
157157
{
158158
}
@@ -161,7 +161,7 @@ public WCFClient_IIS_WebHTTP_DT_ASPEnabled(ConsoleDynamicMethodFixtureFW fixture
161161
[NetFrameworkTest]
162162
public class WCFClient_IIS_WSHTTP_DT_ASPEnabled : WCFClient_IIS_ASPEnabled
163163
{
164-
public WCFClient_IIS_WSHTTP_DT_ASPEnabled(ConsoleDynamicMethodFixtureFW fixture, ITestOutputHelper output)
164+
public WCFClient_IIS_WSHTTP_DT_ASPEnabled(ConsoleDynamicMethodFixtureFWLatest fixture, ITestOutputHelper output)
165165
: base(fixture, output, WCFBindingType.WSHttp, TracingTestOption.DT)
166166
{
167167
}
@@ -170,7 +170,7 @@ public WCFClient_IIS_WSHTTP_DT_ASPEnabled(ConsoleDynamicMethodFixtureFW fixture,
170170
[NetFrameworkTest]
171171
public class WCFClient_IIS_BasicHTTP_DT_ASPEnabled : WCFClient_IIS_ASPEnabled
172172
{
173-
public WCFClient_IIS_BasicHTTP_DT_ASPEnabled(ConsoleDynamicMethodFixtureFW fixture, ITestOutputHelper output)
173+
public WCFClient_IIS_BasicHTTP_DT_ASPEnabled(ConsoleDynamicMethodFixtureFWLatest fixture, ITestOutputHelper output)
174174
: base(fixture, output, WCFBindingType.BasicHttp, TracingTestOption.DT)
175175
{
176176
}
@@ -179,7 +179,7 @@ public WCFClient_IIS_BasicHTTP_DT_ASPEnabled(ConsoleDynamicMethodFixtureFW fixtu
179179
[NetFrameworkTest]
180180
public class WCFClient_IIS_WebHTTP_CAT_ASPEnabled : WCFClient_IIS_ASPEnabled
181181
{
182-
public WCFClient_IIS_WebHTTP_CAT_ASPEnabled(ConsoleDynamicMethodFixtureFW fixture, ITestOutputHelper output)
182+
public WCFClient_IIS_WebHTTP_CAT_ASPEnabled(ConsoleDynamicMethodFixtureFWLatest fixture, ITestOutputHelper output)
183183
: base(fixture, output, WCFBindingType.WebHttp, TracingTestOption.CAT)
184184
{
185185
}
@@ -188,7 +188,7 @@ public WCFClient_IIS_WebHTTP_CAT_ASPEnabled(ConsoleDynamicMethodFixtureFW fixtur
188188
[NetFrameworkTest]
189189
public class WCFClient_IIS_WSHTTP_CAT_ASPEnabled : WCFClient_IIS_ASPEnabled
190190
{
191-
public WCFClient_IIS_WSHTTP_CAT_ASPEnabled(ConsoleDynamicMethodFixtureFW fixture, ITestOutputHelper output)
191+
public WCFClient_IIS_WSHTTP_CAT_ASPEnabled(ConsoleDynamicMethodFixtureFWLatest fixture, ITestOutputHelper output)
192192
: base(fixture, output, WCFBindingType.WSHttp, TracingTestOption.CAT)
193193
{
194194
}
@@ -197,7 +197,7 @@ public WCFClient_IIS_WSHTTP_CAT_ASPEnabled(ConsoleDynamicMethodFixtureFW fixture
197197
[NetFrameworkTest]
198198
public class WCFClient_IIS_BasicHTTP_CAT_ASPEnabled : WCFClient_IIS_ASPEnabled
199199
{
200-
public WCFClient_IIS_BasicHTTP_CAT_ASPEnabled(ConsoleDynamicMethodFixtureFW fixture, ITestOutputHelper output)
200+
public WCFClient_IIS_BasicHTTP_CAT_ASPEnabled(ConsoleDynamicMethodFixtureFWLatest fixture, ITestOutputHelper output)
201201
: base(fixture, output, WCFBindingType.BasicHttp, TracingTestOption.CAT)
202202
{
203203
}

0 commit comments

Comments
 (0)