I have the following method:
public static IEnumerable<Customer> GetStuff(string fileName,int filterValue)
How would you unit test this? Obviously, my problem is with the fileName parameter.
Thank you!
|
I have the following method:
How would you unit test this? Obviously, my problem is with the Thank you! |
||||
|
To make another answer-attempt: I guess theJollySin hit the problem but did not explain enough (IMHO) You seem to take the
And then use mocking-frameworks (like for example MOQ) to mock
Please note that depending on what your are doing, chances are high that there is already a interace/base-class providing the functionality you need (StreamWriter, whatever) |
|||
|
|
I'd personally go for changing a method into something more general like
This would give you the ability to use mock stream or MemoryStream instead of FileStream to fetch data and unit test it correctly. Also, I personally suggest making methods as general as they can be (Stream vs. filePath is a good example). |
|||||
|
|
|
I am assuming the issue is that the method goes out to the file system to fetch the file? I would as a precondition to the test actually create a file for your method to get...You may then pass in the newly created file name to your test. It becomes an integration test at that point, but it's still valid for testing purposes. It's just not a "pure" unit test |
|||||||||
|
fileNameparameter. There is nothing special about thefileNamewhich will lead me to believe that you have a problem, so why is it a problem for you? – Lirik Mar 28 '12 at 5:00