<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments for Torgeir Helgevold's Weblog</title>
	<atom:link href="http://torgeirhelgevold.wordpress.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://torgeirhelgevold.wordpress.com</link>
	<description></description>
	<lastBuildDate>Tue, 26 May 2009 01:31:56 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Unit Testing in Visual Studio Express 2008 by torgeirhelgevold</title>
		<link>http://torgeirhelgevold.wordpress.com/2008/05/31/unit-testing-in-visual-studio-express-2008/#comment-111</link>
		<dc:creator>torgeirhelgevold</dc:creator>
		<pubDate>Tue, 26 May 2009 01:31:56 +0000</pubDate>
		<guid isPermaLink="false">http://torgeirhelgevold.wordpress.com/?p=10#comment-111</guid>
		<description>Soon I will post a new blog entry describing how to set up continuous Integration with ExpressUnit and Hudson</description>
		<content:encoded><![CDATA[<p>Soon I will post a new blog entry describing how to set up continuous Integration with ExpressUnit and Hudson</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Unit Testing in Visual Studio Express 2008 by torgeirhelgevold</title>
		<link>http://torgeirhelgevold.wordpress.com/2008/05/31/unit-testing-in-visual-studio-express-2008/#comment-109</link>
		<dc:creator>torgeirhelgevold</dc:creator>
		<pubDate>Sat, 16 May 2009 01:21:13 +0000</pubDate>
		<guid isPermaLink="false">http://torgeirhelgevold.wordpress.com/?p=10#comment-109</guid>
		<description>I agree. That is a useful feature.
I have uploaded a new version (ver 2.2) where this is supported.

Just set the RunTestsAtStartup config setting in app.config in the ExpressUnitGui project to True (The value is case sensitive), and all tests will be run on startup.

The default value is False</description>
		<content:encoded><![CDATA[<p>I agree. That is a useful feature.<br />
I have uploaded a new version (ver 2.2) where this is supported.</p>
<p>Just set the RunTestsAtStartup config setting in app.config in the ExpressUnitGui project to True (The value is case sensitive), and all tests will be run on startup.</p>
<p>The default value is False</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Unit Testing in Visual Studio Express 2008 by Sagi</title>
		<link>http://torgeirhelgevold.wordpress.com/2008/05/31/unit-testing-in-visual-studio-express-2008/#comment-108</link>
		<dc:creator>Sagi</dc:creator>
		<pubDate>Fri, 15 May 2009 05:18:18 +0000</pubDate>
		<guid isPermaLink="false">http://torgeirhelgevold.wordpress.com/?p=10#comment-108</guid>
		<description>Cool. That did the trick. Thanks!

One more question - to get the test to run once the ExpressUnit GUI comes up I need to right-click on the specific test in the left pane and select RUN. Is there a way to get ExpressUnit to run the tests immediately when it comes up?</description>
		<content:encoded><![CDATA[<p>Cool. That did the trick. Thanks!</p>
<p>One more question &#8211; to get the test to run once the ExpressUnit GUI comes up I need to right-click on the specific test in the left pane and select RUN. Is there a way to get ExpressUnit to run the tests immediately when it comes up?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Unit Testing in Visual Studio Express 2008 by torgeirhelgevold</title>
		<link>http://torgeirhelgevold.wordpress.com/2008/05/31/unit-testing-in-visual-studio-express-2008/#comment-107</link>
		<dc:creator>torgeirhelgevold</dc:creator>
		<pubDate>Fri, 15 May 2009 03:25:59 +0000</pubDate>
		<guid isPermaLink="false">http://torgeirhelgevold.wordpress.com/?p=10#comment-107</guid>
		<description>Hi Sagi.
It looks like you are just missing a using statement.
Just add the following to the top of the class:

using ExpressUnitModel;

This will tell the compiler where the attributes are defined</description>
		<content:encoded><![CDATA[<p>Hi Sagi.<br />
It looks like you are just missing a using statement.<br />
Just add the following to the top of the class:</p>
<p>using ExpressUnitModel;</p>
<p>This will tell the compiler where the attributes are defined</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Unit Testing in Visual Studio Express 2008 by Sagi</title>
		<link>http://torgeirhelgevold.wordpress.com/2008/05/31/unit-testing-in-visual-studio-express-2008/#comment-106</link>
		<dc:creator>Sagi</dc:creator>
		<pubDate>Thu, 14 May 2009 19:50:18 +0000</pubDate>
		<guid isPermaLink="false">http://torgeirhelgevold.wordpress.com/?p=10#comment-106</guid>
		<description>Thanks, I followed the instructions and added a class to the ExpressUnitGui project:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace ExpressUnitGui
{
    [TestClass]
    public class TimerTest
    {
            [UnitTest]
            public void AddTest()
            {
                Confirm.Equals(4, 2 + 2);
            }


    }
}

I&#039;m getting errors about the TestClass and UnitTest attributes not being found.
Any idea?
Thanks in advance and sorry if I&#039;m missing something very basic here, I&#039;m a newbie with VC#</description>
		<content:encoded><![CDATA[<p>Thanks, I followed the instructions and added a class to the ExpressUnitGui project:</p>
<p>using System;<br />
using System.Collections.Generic;<br />
using System.Linq;<br />
using System.Text;</p>
<p>namespace ExpressUnitGui<br />
{<br />
    [TestClass]<br />
    public class TimerTest<br />
    {<br />
            [UnitTest]<br />
            public void AddTest()<br />
            {<br />
                Confirm.Equals(4, 2 + 2);<br />
            }</p>
<p>    }<br />
}</p>
<p>I&#8217;m getting errors about the TestClass and UnitTest attributes not being found.<br />
Any idea?<br />
Thanks in advance and sorry if I&#8217;m missing something very basic here, I&#8217;m a newbie with VC#</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Unit Testing in Visual Studio Express 2008 by torgeirhelgevold</title>
		<link>http://torgeirhelgevold.wordpress.com/2008/05/31/unit-testing-in-visual-studio-express-2008/#comment-105</link>
		<dc:creator>torgeirhelgevold</dc:creator>
		<pubDate>Wed, 13 May 2009 04:45:56 +0000</pubDate>
		<guid isPermaLink="false">http://torgeirhelgevold.wordpress.com/?p=10#comment-105</guid>
		<description>The easiest way is to just add the ExpressUnitGui project to your solution. (Described as step 1-4 in the article above)
That way you can add all test to the added project</description>
		<content:encoded><![CDATA[<p>The easiest way is to just add the ExpressUnitGui project to your solution. (Described as step 1-4 in the article above)<br />
That way you can add all test to the added project</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Unit Testing in Visual Studio Express 2008 by Sagi</title>
		<link>http://torgeirhelgevold.wordpress.com/2008/05/31/unit-testing-in-visual-studio-express-2008/#comment-104</link>
		<dc:creator>Sagi</dc:creator>
		<pubDate>Tue, 12 May 2009 20:10:04 +0000</pubDate>
		<guid isPermaLink="false">http://torgeirhelgevold.wordpress.com/?p=10#comment-104</guid>
		<description>I have just downloaded the project from google code but I don&#039;t know how to install it. I guess I need to grab the ExpressUnitModel.dll from the bin/Release and add a reference to it in my project but I&#039;m not sure regarding the Gui.exe and whether anything else is needed.
Thanks,</description>
		<content:encoded><![CDATA[<p>I have just downloaded the project from google code but I don&#8217;t know how to install it. I guess I need to grab the ExpressUnitModel.dll from the bin/Release and add a reference to it in my project but I&#8217;m not sure regarding the Gui.exe and whether anything else is needed.<br />
Thanks,</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Unit testing in Visual Studio Express by torgeirhelgevold</title>
		<link>http://torgeirhelgevold.wordpress.com/2008/05/12/unit-testing-in-visual-studio-express/#comment-49</link>
		<dc:creator>torgeirhelgevold</dc:creator>
		<pubDate>Thu, 19 Mar 2009 04:11:41 +0000</pubDate>
		<guid isPermaLink="false">http://torgeirhelgevold.wordpress.com/?p=6#comment-49</guid>
		<description>As an alternative to NUnit, feel free to check out my own tool: ExpressUnit
http://torgeirhelgevold.wordpress.com/2008/05/31/unit-testing-in-visual-studio-express-2008/</description>
		<content:encoded><![CDATA[<p>As an alternative to NUnit, feel free to check out my own tool: ExpressUnit<br />
<a href="http://torgeirhelgevold.wordpress.com/2008/05/31/unit-testing-in-visual-studio-express-2008/" rel="nofollow">http://torgeirhelgevold.wordpress.com/2008/05/31/unit-testing-in-visual-studio-express-2008/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on About Torgeir by torgeirhelgevold</title>
		<link>http://torgeirhelgevold.wordpress.com/about/#comment-48</link>
		<dc:creator>torgeirhelgevold</dc:creator>
		<pubDate>Thu, 19 Mar 2009 03:04:05 +0000</pubDate>
		<guid isPermaLink="false">#comment-48</guid>
		<description>Hi Michael.

I just uploaded the latest code.

Sorry for the delay..
Tor</description>
		<content:encoded><![CDATA[<p>Hi Michael.</p>
<p>I just uploaded the latest code.</p>
<p>Sorry for the delay..<br />
Tor</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on About Torgeir by Michael Maddox</title>
		<link>http://torgeirhelgevold.wordpress.com/about/#comment-46</link>
		<dc:creator>Michael Maddox</dc:creator>
		<pubDate>Wed, 18 Mar 2009 11:42:21 +0000</pubDate>
		<guid isPermaLink="false">#comment-46</guid>
		<description>Hi Torgeir,

I have been using Express Unit pretty heavily for the last couple of weeks.  To make some improvements, I downloaded the source code from Google Code:

http://code.google.com/p/expressunit/source/browse/trunk/TestFramework.zip

It appears that you have recently uploaded new versions of the GUI client to Google Code, but you do not appear to be uploading source code for the ExpressUnit DLLs recently.

Please upload source code for the ExpressUnit DLLs each time you release a new GUI client.  Thanks.

-Michael Maddox
http://www.capprime.com/</description>
		<content:encoded><![CDATA[<p>Hi Torgeir,</p>
<p>I have been using Express Unit pretty heavily for the last couple of weeks.  To make some improvements, I downloaded the source code from Google Code:</p>
<p><a href="http://code.google.com/p/expressunit/source/browse/trunk/TestFramework.zip" rel="nofollow">http://code.google.com/p/expressunit/source/browse/trunk/TestFramework.zip</a></p>
<p>It appears that you have recently uploaded new versions of the GUI client to Google Code, but you do not appear to be uploading source code for the ExpressUnit DLLs recently.</p>
<p>Please upload source code for the ExpressUnit DLLs each time you release a new GUI client.  Thanks.</p>
<p>-Michael Maddox<br />
<a href="http://www.capprime.com/" rel="nofollow">http://www.capprime.com/</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>
