I want to loop throug a XmlNodeList. How do you mock a XmlNodeList in Moq, so you can loop through it like in a foreach loop:
foreach (XmlNode xmlNode in nodes) { //Do something with node } I have tried to set up via a the SetupSequence method, but I haven't been able to create the desired mock.
foreachimplicitly call theGetEnumeratormethod of whatever is beingforeached? Perhaps mocking that method could get you what you're looking for.