@@ -88,7 +88,7 @@ public async Task EventHubTriggerCardinalityOne_Succeeds()
88
88
}
89
89
}
90
90
91
-
91
+ /*
92
92
[Fact]
93
93
public async Task EventHubTriggerAndOutputBinaryListMany_Succeeds()
94
94
{
@@ -109,7 +109,7 @@ public async Task EventHubTriggerAndOutputBinaryListMany_Succeeds()
109
109
await StorageHelpers.ClearQueue(Constants.OutputEventHubQueueName);
110
110
}
111
111
}
112
-
112
+ */
113
113
[ Fact ]
114
114
public async Task EventHubTriggerAndOutputBinaryOne_Succeeds ( )
115
115
{
@@ -130,27 +130,28 @@ public async Task EventHubTriggerAndOutputBinaryOne_Succeeds()
130
130
await StorageHelpers . ClearQueue ( Constants . OutputEventHubQueueName ) ;
131
131
}
132
132
}
133
+ /*
134
+ [Fact]
135
+ public async Task EventHubTriggerAndOutputBinaryArrayMany_Succeeds()
136
+ {
137
+ string expectedEventId = Guid.NewGuid().ToString();
138
+ try
139
+ {
140
+ await SetupQueue(Constants.OutputBinaryArrayManyQueueName);
133
141
134
- [ Fact ]
135
- public async Task EventHubTriggerAndOutputBinaryArrayMany_Succeeds ( )
136
- {
137
- string expectedEventId = Guid . NewGuid ( ) . ToString ( ) ;
138
- try
139
- {
140
- await SetupQueue ( Constants . OutputBinaryArrayManyQueueName ) ;
141
-
142
- await EventHubsHelpers . SendMessagesAsync ( expectedEventId , Constants . InputBinaryManyArrayEventHubQueueName , Constants . EventHubsConnectionStringSenderSetting2 ) ;
143
-
144
- //Verify
145
- var queueMessage = await StorageHelpers . ReadFromQueue ( Constants . OutputBinaryArrayManyQueueName ) ;
146
- Assert . Contains ( expectedEventId , queueMessage ) ;
147
- }
148
- finally
149
- {
150
- //Clear queue
151
- await StorageHelpers . ClearQueue ( Constants . OutputEventHubQueueName ) ;
152
- }
153
- }
142
+ await EventHubsHelpers.SendMessagesAsync(expectedEventId, Constants.InputBinaryManyArrayEventHubQueueName, Constants.EventHubsConnectionStringSenderSetting2);
143
+
144
+ //Verify
145
+ var queueMessage = await StorageHelpers.ReadFromQueue(Constants.OutputBinaryArrayManyQueueName);
146
+ Assert.Contains(expectedEventId, queueMessage);
147
+ }
148
+ finally
149
+ {
150
+ //Clear queue
151
+ await StorageHelpers.ClearQueue(Constants.OutputEventHubQueueName);
152
+ }
153
+ }
154
+ */
154
155
155
156
156
157
private static async Task SetupQueue ( string queueName )
0 commit comments