vote up 0 vote down star

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 .

flag

75% accept rate

1 Answer

vote up 1 vote down check

You have to use a little trick

<test> _
Public Sub Test
  mockedRepository.Expect(Function(x) domock(x)).DoOtherStuff()
End SUb

Private Function domock(Byval x as whateverxis) as boolean
  x.AddUser(someUser)
  return false 'but actualy who cares
End Function

All this mess is solved in VB10

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.