File tree Expand file tree Collapse file tree 33 files changed +198
-0
lines changed Expand file tree Collapse file tree 33 files changed +198
-0
lines changed Original file line number Diff line number Diff line change @@ -14,6 +14,12 @@ public class HeaderWriterAudit
14
14
15
15
const string endpointName = "HeaderWriterAuditV7" ;
16
16
17
+ [ OneTimeTearDown ]
18
+ public void TearDown ( )
19
+ {
20
+ ManualResetEvent . Dispose ( ) ;
21
+ }
22
+
17
23
[ Test ]
18
24
public async Task Write ( )
19
25
{
Original file line number Diff line number Diff line change @@ -15,6 +15,12 @@ public class HeaderWriterDataBusConvention
15
15
16
16
string endpointName = "HeaderWriterDataBusConventionV7" ;
17
17
18
+ [ OneTimeTearDown ]
19
+ public void TearDown ( )
20
+ {
21
+ ManualResetEvent . Dispose ( ) ;
22
+ }
23
+
18
24
[ Test ]
19
25
public async Task Write ( )
20
26
{
Original file line number Diff line number Diff line change @@ -15,6 +15,12 @@ public class HeaderWriterDataBusProperty
15
15
16
16
string endpointName = "HeaderWriterDataBusPropertyV7" ;
17
17
18
+ [ OneTimeTearDown ]
19
+ public void TearDown ( )
20
+ {
21
+ ManualResetEvent . Dispose ( ) ;
22
+ }
23
+
18
24
[ Test ]
19
25
public async Task Write ( )
20
26
{
Original file line number Diff line number Diff line change @@ -15,6 +15,12 @@ public class HeaderWriterDefer
15
15
public static bool Received ;
16
16
static string EndpointName = "HeaderWriterDeferV7" ;
17
17
18
+ [ OneTimeTearDown ]
19
+ public void TearDown ( )
20
+ {
21
+ ManualResetEvent . Dispose ( ) ;
22
+ }
23
+
18
24
[ Test ]
19
25
public async Task Write ( )
20
26
{
Original file line number Diff line number Diff line change @@ -17,6 +17,12 @@ public class HeaderWriterEncryption
17
17
18
18
string endpointName = "HeaderWriterEncryptionV7" ;
19
19
20
+ [ OneTimeTearDown ]
21
+ public void TearDown ( )
22
+ {
23
+ ManualResetEvent . Dispose ( ) ;
24
+ }
25
+
20
26
[ Test ]
21
27
public async Task Write ( )
22
28
{
Original file line number Diff line number Diff line change @@ -15,6 +15,12 @@ public class HeaderWriterError
15
15
static ManualResetEvent ManualResetEvent = new ManualResetEvent ( false ) ;
16
16
string endpointName = "HeaderWriterErrorV7" ;
17
17
18
+ [ OneTimeTearDown ]
19
+ public void TearDown ( )
20
+ {
21
+ ManualResetEvent . Dispose ( ) ;
22
+ }
23
+
18
24
[ Test ]
19
25
public async Task Write ( )
20
26
{
Original file line number Diff line number Diff line change @@ -14,6 +14,12 @@ public class HeaderWriterPublish
14
14
15
15
static string EndpointName = "HeaderWriterPublishV7" ;
16
16
17
+ [ OneTimeTearDown ]
18
+ public void TearDown ( )
19
+ {
20
+ ManualResetEvent . Dispose ( ) ;
21
+ }
22
+
17
23
[ Test ]
18
24
public async Task Write ( )
19
25
{
Original file line number Diff line number Diff line change @@ -13,6 +13,12 @@ public class HeaderWriterReply
13
13
static ManualResetEvent ManualResetEvent = new ManualResetEvent ( false ) ;
14
14
string endpointName = "HeaderWriterReplyV7" ;
15
15
16
+ [ OneTimeTearDown ]
17
+ public void TearDown ( )
18
+ {
19
+ ManualResetEvent . Dispose ( ) ;
20
+ }
21
+
16
22
[ Test ]
17
23
public async Task Write ( )
18
24
{
Original file line number Diff line number Diff line change @@ -13,6 +13,12 @@ public class HeaderWriterReturn
13
13
static ManualResetEvent ManualResetEvent = new ManualResetEvent ( false ) ;
14
14
string endpointName = "HeaderWriterReturnV7" ;
15
15
16
+ [ OneTimeTearDown ]
17
+ public void TearDown ( )
18
+ {
19
+ ManualResetEvent . Dispose ( ) ;
20
+ }
21
+
16
22
[ Test ]
17
23
public async Task Write ( )
18
24
{
Original file line number Diff line number Diff line change @@ -14,6 +14,12 @@ public class HeaderWriterSaga
14
14
static CountdownEvent CountdownEvent = new CountdownEvent ( 4 ) ;
15
15
string endpointName = "HeaderWriterSagaV7" ;
16
16
17
+ [ OneTimeTearDown ]
18
+ public void TearDown ( )
19
+ {
20
+ CountdownEvent . Dispose ( ) ;
21
+ }
22
+
17
23
[ Test ]
18
24
public async Task Write ( )
19
25
{
You can’t perform that action at this time.
0 commit comments