Skip to content

Commit

Permalink
address review comments (#791)
Browse files Browse the repository at this point in the history
  • Loading branch information
scottf authored Jun 20, 2023
1 parent 0fd815a commit d621b05
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions src/Tests/IntegrationTests/TestSimplification.cs
Original file line number Diff line number Diff line change
Expand Up @@ -302,11 +302,12 @@ public void TestIterableConsumer()
pubThread.Join();

Assert.True(count.Read() > 500);

// coverage
consumerContext.consume(ConsumeOptions.DefaultConsumeOptions);
Assert.Throws<ArgumentException>(() => consumerContext.consume((ConsumeOptions)null));
}

// coverage
IIterableConsumer consumer2 = consumerContext.consume(ConsumeOptions.DefaultConsumeOptions);
consumer2.Dispose();
Assert.Throws<ArgumentException>(() => consumerContext.consume((ConsumeOptions)null));
});
}

Expand Down

0 comments on commit d621b05

Please sign in to comment.