Created
April 1, 2024 15:25
-
-
Save AndyButland/50963d9b1c2a5148285ad517c9f98731 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var commands = new List<ImageUrlGenerationOptions>(); | |
imageUrlGeneratorMock.Verify(x => x.GetImageUrl(Capture.In(commands, cmd => true))); | |
foreach (ImageUrlGenerationOptions command in commands) | |
{ | |
System.Diagnostics.Debug.WriteLine(command.Height); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment