Giving character to your unit tests - Stack Overflow most recent 30 from stackoverflow.com2009-11-23T03:05:45Zhttp://stackoverflow.com/feeds/question/160726http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/160726/giving-character-to-your-unit-tests-2Giving character to your unit testsazamsharp2008-10-02T03:06:40Z2008-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>/// <summary>
/// This is Dave!
/// </summary>
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#1607381Answer by Gishu for Giving character to your unit testsGishu2008-10-02T03:10:43Z2008-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#1607430Answer by azamsharp for Giving character to your unit testsazamsharp2008-10-02T03:12:26Z2008-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#1607640Answer by Darren Kopp for Giving character to your unit testsDarren Kopp2008-10-02T03:21:02Z2008-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#1607861Answer by azamsharp for Giving character to your unit testsazamsharp2008-10-02T03:34:01Z2008-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>