Look into bindings/netstandard/ElectionGuard/ElectionGuard.Encryption.Tests/TestEncrypt.cs's Test_Multiple_Submit() method. Specifically to understand the goal of what we are testing.
Also refactor for loop to use something more modern
Possible Implementation
for loop option:
Enumerable.Range(1,10000).ForEach(using new SubmittedBallot(ciphertext, BallotBoxState.Cast));
Is there an existing issue for this?
Suggestion
Look into
bindings/netstandard/ElectionGuard/ElectionGuard.Encryption.Tests/TestEncrypt.cs
'sTest_Multiple_Submit()
method. Specifically to understand the goal of what we are testing.Also refactor for loop to use something more modern
Possible Implementation
for loop option:
Enumerable.Range(1,10000).ForEach(using new SubmittedBallot(ciphertext, BallotBoxState.Cast));
Anything else?
No response