vote up 2 vote down star

Hello,

I use a stream reader to import some data and at the moment I hardcode a small sample file in the test to do the job.

Is it sensible to use Mock Objects with this and how ?

flag

64% accept rate

4 Answers

vote up 1 vote down check

I don't see any points to mock StreamReader unless you're making StreamReader derived class. If you need to provide test input via StreamReader, just read some predefined data from any suitable source.

link|flag
vote up 0 vote down

When testing code that depends on streams, streamreaders and streamwriters I usually use the memorystream object for testing. No mocking framework needed here.

link|flag
vote up 1 vote down

StreamReader is a concrete class, so many mocking systems won't allow you to mock it. TypeMock Isolator will, however.

You may find you want to mock it if you need to force errors to come from the reader, rather than just having it supply data to your class under test. If you don't need this functionality, you may be just as far ahead constructing a StreamReader from some other Stream, such as a MemoryStream - this way you don't need to go to disk for your data.

link|flag
vote up 0 vote down

You can use a factory method to return a TextReader that could either be the mock object or an actual StreamReader.

link|flag

Your Answer

Get an OpenID
or

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