I remember that to set expectations on methods that return void in C# one has to write:
mockedRepository.Expect(() => mr.AddUser(someUser)).DoOtherStuff()
where AddUser returns void.
How to achieve the same in VB.NET?
EDIT:
I've found similar question. May be helpful: How to mock a method with Rhino Mocks in VB.NET .