Hopefully this is a simple. I just getting started with mocking frameworks and have decided to use MOQ. I'm having trouble with one of my test after setup of my mock object so i decided to step through the code. When i hit F10 after the following line:
Dim Mock = New Mock(Of IMyInterface) <----Error When on this line and hit F10
With Mock
.Setup(Function(x) x.MyProperty).Returns(5)
..........
I get the following error Dialog:
"There is no source code available for the current location
[ ] Show disassembly automatically"
I originally downloaded the binaries and not the source. I thought maybe i needed to download the source and compile it in debug mode manually. Tried that but it didn't work. Tried googling around but didn't really find much.
Any help would be appreciated