Unit testing fake repository, how can I test the GetById method without first adding an entity - Stack Overflow most recent 30 from stackoverflow.com2009-12-12T08:03:01Zhttp://stackoverflow.com/feeds/question/314024http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/314024/unit-testing-fake-repository-how-can-i-test-the-getbyid-method-without-first-add1Unit testing fake repository, how can I test the GetById method without first adding an entitymichielvoo2008-11-24T12:26:44Z2008-11-24T12:53:37Z
<p>My understanding is that you have to write unit tests that isolate functionality. So given a repository class that has this method:</p>
<pre><code>Entity GetById(Guid id)
</code></pre>
<p>and a <em>fake</em> implementation (using a Dictionary for storage), how would you write a test without first <em>adding</em> an entity? Is it ok to use a known set of guids for testing? Then in the fake repository constructor I could fill the dictionary with a couple of entities where the guids follow a pattern, so that I can test the GetById() method with a guid that I know will return an entity. </p>
<p>Thanks for reading!</p>
<p>PS. This is my first time writing unit tests.</p>
http://stackoverflow.com/questions/314024/unit-testing-fake-repository-how-can-i-test-the-getbyid-method-without-first-add/314041#3140412Answer by Chris Kimpton for Unit testing fake repository, how can I test the GetById method without first adding an entityChris Kimpton2008-11-24T12:32:37Z2008-11-24T12:32:37Z<p>Yes, you could use known test ids in your test - that is what I would do. Although I have become a fan of <a href="http://en.wikibooks.org/wiki/How_to_Use_Rhino_Mocks/Introduction" rel="nofollow">Rhino Mocks</a> which lets you put more directly in the test about what you'd expect to the mock object to do.</p>
<p>For example just before your call to the repository, you would do this:</p>
<pre><code>Expect.Call(repository.GetById("someObject")).Return(new RepositoryThing());
</code></pre>
<p>It appeals to me anyway :)</p>
http://stackoverflow.com/questions/314024/unit-testing-fake-repository-how-can-i-test-the-getbyid-method-without-first-add/314050#3140500Answer by Nath for Unit testing fake repository, how can I test the GetById method without first adding an entityNath2008-11-24T12:36:11Z2008-11-24T12:36:11Z<p>There is an interesting article <a href="http://rant.blackapache.net/2008/07/29/unit-tests-boldly-crossing-boundaries-and-gently-breaking-rules/" rel="nofollow">here</a>.</p>
http://stackoverflow.com/questions/314024/unit-testing-fake-repository-how-can-i-test-the-getbyid-method-without-first-add/314067#3140671Answer by philippe for Unit testing fake repository, how can I test the GetById method without first adding an entityphilippe 2008-11-24T12:53:37Z2008-11-24T12:53:37Z<p>Yes, using a fake implementation of an object/interface with a fixed list of items that can be queried from the fake instance is a valid practice. </p>
<p>Obviously, without adding an entry first, one can only test what's returned when the Guid can't be found in the repository. </p>
<p>In C# allows it, one also can have the fake implementation of the repository have a method to add items to the repository. </p>