Giving character to your unit tests - Stack Overflow most recent 30 from stackoverflow.com 2009-11-23T03:05:45Z http://stackoverflow.com/feeds/question/160726 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/160726/giving-character-to-your-unit-tests -2 Giving character to your unit tests azamsharp 2008-10-02T03:06:40Z 2008-10-18T20:51:03Z <p>I have been thinking a lot about unit testing and how to improve the readability of the unit tests. I thought why not give a character to the classes in the unit test to clarify what they do. </p> <p>Here is a simple unit test that I wrote: </p> <pre><code>[TestFixture] public class when_dave_transfers_money_from_wamu_account_to_the_woodforest_account { [Test] public void should_increase_the_amount_in_woodforest_account_when_transaction_successfull() { Dave dave = new Dave(); Wamu wamu = new Wamu(); wamu.Balance = 150; wamu.AddUser(dave); Woodforest woodforest = new Woodforest(); woodforest.AddUser(dave); FundTransferService.Transfer(100, wamu, woodforest); Assert.AreEqual(wamu.Balance, 50); Assert.AreEqual(woodforest.Balance, 100); } } </code></pre> <p>Here is the Dave class: </p> <pre><code>/// &lt;summary&gt; /// This is Dave! /// &lt;/summary&gt; public class Dave : User { public Dave() { FirstName = "Dave"; LastName = "Allen"; } } </code></pre> <p>The unit test name clearly serves the purpose. But, maybe I want to dig a little deeper and assign the Wamu and Woodforest accounts to Dave whenever Dave is created. The problem is that it will move away from readability as I will have to use index values to refer to the account. </p> <p>What are your thoughts on making this more readable? </p> http://stackoverflow.com/questions/160726/giving-character-to-your-unit-tests/160738#160738 1 Answer by Gishu for Giving character to your unit tests Gishu 2008-10-02T03:10:43Z 2008-10-02T03:10:43Z <p>How about a private helper method in the test fixture</p> <pre><code>private Dave GetDave_With_Wamu_And_Woodforest_AccountsHookedUp() </code></pre> http://stackoverflow.com/questions/160726/giving-character-to-your-unit-tests/160743#160743 0 Answer by azamsharp for Giving character to your unit tests azamsharp 2008-10-02T03:12:26Z 2008-10-02T03:12:26Z <p>I can add Dave to the Wamu and the Woodforest account when Dave is created like this: </p> <pre><code> public Dave() { FirstName = "Dave"; LastName = "Allen"; // add accounts for Dave Wamu wamu = new Wamu(); wamu.AddUser(this); Woodforest woodforest = new Woodforest(); woodforest.AddUser(this); } </code></pre> <p>The accounts are added the List collection in the User object from which Dave inherits. </p> http://stackoverflow.com/questions/160726/giving-character-to-your-unit-tests/160764#160764 0 Answer by Darren Kopp for Giving character to your unit tests Darren Kopp 2008-10-02T03:21:02Z 2008-10-02T03:21:02Z <p>when you attempt to instantiate the Wamu instance, shouldn't it throw a WamuNotFoundException?</p> http://stackoverflow.com/questions/160726/giving-character-to-your-unit-tests/160786#160786 1 Answer by azamsharp for Giving character to your unit tests azamsharp 2008-10-02T03:34:01Z 2008-10-02T03:34:01Z <p>Here is another way to run the test: </p> <pre><code> [Test] public void should_increase_the_amount_in_woodforest_account_when_transaction_successfull() { Dave dave = new Dave(); // we know that dave has wamu and wooforest accounts dave.WamuAccount("Wamu").Balance = 150; FundTransferService.Transfer(100, dave.WamuAccount("Wamu"), dave.WoodforestAccount( "Woodforest")); Assert.AreEqual(50, dave.WamuAccount("Wamu").Balance); Assert.AreEqual(100, dave.WoodforestAccount("Woodforest").Balance); } </code></pre>