Questions tagged [nmock-2.1]
3 questions
2
votes
1 answer
Help with some mocking
I was trying to mock an interface and I got the next expection:
System.TypeLoadException: System.TypeLoadException: Signature of the body and declaration in a method implementation do not match
I figured out later that my problem was a function…

Luisa
- 525
- 1
- 6
- 16
2
votes
2 answers
Differences between NMock 2.0 and NMock2
I am a bit confused over which version of NMock2 I should use. The one I've been using for a while I got from here:
http://www.nmock.org/download.html
The filename is NMock2.dll with version 2.0.0.44.
I ran into a problem where I couldn't mock…

Igor Zevaka
- 74,528
- 26
- 112
- 128
0
votes
2 answers
Unit Test Method for File Size more than 40MB
My DTO is declared like below
[MaxLength(maxFileSize, ErrorMessage = "Max Byte Array length is 40MB.")]
public byte[] DocumentFile { get; set; }
I need to write Unit Test method for File Size more than 40MB.
As the DocumentFile property is…

Ashok kumar
- 1,593
- 4
- 33
- 68