<?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"
	>
<channel>
	<title>Comments on: RowTest Extension 1.2.0</title>
	<atom:link href="http://www.andreas-schlapsi.com/2008/01/29/rowtest-extension-120/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.andreas-schlapsi.com/2008/01/29/rowtest-extension-120/</link>
	<description></description>
	<pubDate>Fri, 21 Nov 2008 03:20:38 +0000</pubDate>
	
		<item>
		<title>By: Andreas Schlapsi</title>
		<link>http://www.andreas-schlapsi.com/2008/01/29/rowtest-extension-120/#comment-76</link>
		<dc:creator>Andreas Schlapsi</dc:creator>
		<pubDate>Sun, 17 Feb 2008 19:27:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.andreas-schlapsi.com/2008/01/29/rowtest-extension-120/#comment-76</guid>
		<description>I released a new version which should fix this issue.</description>
		<content:encoded><![CDATA[<p>I released a new version which should fix this issue.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andy Morris</title>
		<link>http://www.andreas-schlapsi.com/2008/01/29/rowtest-extension-120/#comment-73</link>
		<dc:creator>Andy Morris</dc:creator>
		<pubDate>Wed, 13 Feb 2008 16:38:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.andreas-schlapsi.com/2008/01/29/rowtest-extension-120/#comment-73</guid>
		<description>I've tried this with NUnit 2.4.5.0, test runner 2.11.2177 and rowtest v2.0.50727 

using NUnit.Framework; // Requires reference nunit.framework
using NUnit.Framework.SyntaxHelpers;
using NUnitExtension.RowTest;

namespace TestFirstLearning
{
    [TestFixture]
    public class RowTestBugExample
    {
        private bool setupDone;
        private bool fixtureSetupDone;

        [TestFixtureSetUp ]
        public void FixtureSetup()
        {
            fixtureSetupDone  = true;
        }
        [SetUp]
        public void Setup()
        {
            setupDone = true;  
        }

        [Test]
        public void Test()
        {
            Assert.That(setupDone,"Check setupDone");
            Assert.That(fixtureSetupDone, "Check fixtureSetupDone");
        }

        [RowTest]
        [Row("Dummy")]
        public void RowTest(string rowData)
        {
            Assert.That(rowData, Is.EqualTo("Dummy"));
            Assert.That(setupDone, "Check setupDone");
            Assert.That(fixtureSetupDone, "Check fixtureSetupDone");
        }
    }

}


and  get 

TestCase 'TestFirstLearning.RowTestBugExample.RowTest(Dummy)'
failed: 
  Check fixtureSetupDone
  Expected: True
  But was:  False

I dont have tiome to try with the most recent version, I think I might get a failure on "Check setupDone" as well. Can anyone else try it out and see?</description>
		<content:encoded><![CDATA[<p>I&#8217;ve tried this with NUnit 2.4.5.0, test runner 2.11.2177 and rowtest v2.0.50727 </p>
<p>using NUnit.Framework; // Requires reference nunit.framework<br />
using NUnit.Framework.SyntaxHelpers;<br />
using NUnitExtension.RowTest;</p>
<p>namespace TestFirstLearning<br />
{<br />
    [TestFixture]<br />
    public class RowTestBugExample<br />
    {<br />
        private bool setupDone;<br />
        private bool fixtureSetupDone;</p>
<p>        [TestFixtureSetUp ]<br />
        public void FixtureSetup()<br />
        {<br />
            fixtureSetupDone  = true;<br />
        }<br />
        [SetUp]<br />
        public void Setup()<br />
        {<br />
            setupDone = true;<br />
        }</p>
<p>        [Test]<br />
        public void Test()<br />
        {<br />
            Assert.That(setupDone,&#8221;Check setupDone&#8221;);<br />
            Assert.That(fixtureSetupDone, &#8220;Check fixtureSetupDone&#8221;);<br />
        }</p>
<p>        [RowTest]<br />
        [Row("Dummy")]<br />
        public void RowTest(string rowData)<br />
        {<br />
            Assert.That(rowData, Is.EqualTo(&#8221;Dummy&#8221;));<br />
            Assert.That(setupDone, &#8220;Check setupDone&#8221;);<br />
            Assert.That(fixtureSetupDone, &#8220;Check fixtureSetupDone&#8221;);<br />
        }<br />
    }</p>
<p>}</p>
<p>and  get </p>
<p>TestCase &#8216;TestFirstLearning.RowTestBugExample.RowTest(Dummy)&#8217;<br />
failed:<br />
  Check fixtureSetupDone<br />
  Expected: True<br />
  But was:  False</p>
<p>I dont have tiome to try with the most recent version, I think I might get a failure on &#8220;Check setupDone&#8221; as well. Can anyone else try it out and see?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Richard</title>
		<link>http://www.andreas-schlapsi.com/2008/01/29/rowtest-extension-120/#comment-72</link>
		<dc:creator>Richard</dc:creator>
		<pubDate>Wed, 13 Feb 2008 12:02:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.andreas-schlapsi.com/2008/01/29/rowtest-extension-120/#comment-72</guid>
		<description>Sorry, when re-reading the comment by Andy Morris I realized that his problem is (probably) essentially my problem. So I made a duplicate comment.</description>
		<content:encoded><![CDATA[<p>Sorry, when re-reading the comment by Andy Morris I realized that his problem is (probably) essentially my problem. So I made a duplicate comment.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Richard</title>
		<link>http://www.andreas-schlapsi.com/2008/01/29/rowtest-extension-120/#comment-71</link>
		<dc:creator>Richard</dc:creator>
		<pubDate>Tue, 12 Feb 2008 16:28:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.andreas-schlapsi.com/2008/01/29/rowtest-extension-120/#comment-71</guid>
		<description>I think there still is a problem with the [TestFixtureSetup]. It is run, but if I set a class-variable (e.g. a private MockRepository _mockRepository) from within the [TestFixtureSetup]-method, then this variable is back to null when the [SetUp] is run. This does not happen with "normal" [Test]s in the same fixture.</description>
		<content:encoded><![CDATA[<p>I think there still is a problem with the [TestFixtureSetup]. It is run, but if I set a class-variable (e.g. a private MockRepository _mockRepository) from within the [TestFixtureSetup]-method, then this variable is back to null when the [SetUp] is run. This does not happen with &#8220;normal&#8221; [Test]s in the same fixture.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andy Morris</title>
		<link>http://www.andreas-schlapsi.com/2008/01/29/rowtest-extension-120/#comment-67</link>
		<dc:creator>Andy Morris</dc:creator>
		<pubDate>Thu, 07 Feb 2008 11:31:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.andreas-schlapsi.com/2008/01/29/rowtest-extension-120/#comment-67</guid>
		<description>When using NUnit 2.4.6 and RowTest 1.2.0 the following code fails. At first I was using the TestDriven.net runner, but I also got the error after uninstalling all things NUnit, installing Nunit 2.4.5 and RowTest 1.2.0, refreshing my references and running the tests from the Nunit gui.

This all worked fine under NUNit2.4.5 and RowTest  1.1.0

This would be a good time to mention how much I appreciate the work you have done in RowTest

//Code starts 

using NUnit.Framework;
using NUnitExtension.RowTest;

namespace MultiRowTests
{
    [TestFixture]
    public class TestClass
    {
        private bool setupHasRun = false; 

        [SetUp]
        public void Setup()
        {
            setupHasRun = true;
        }

        [Test]
        public void singleSetupTest()
        {
            Assert.That(setupHasRun);
        }

        [RowTest]
        [Row()]
        public void rowSetupTest()
        {
            Assert.That(setupHasRun);
        }
    }
}</description>
		<content:encoded><![CDATA[<p>When using NUnit 2.4.6 and RowTest 1.2.0 the following code fails. At first I was using the TestDriven.net runner, but I also got the error after uninstalling all things NUnit, installing Nunit 2.4.5 and RowTest 1.2.0, refreshing my references and running the tests from the Nunit gui.</p>
<p>This all worked fine under NUNit2.4.5 and RowTest  1.1.0</p>
<p>This would be a good time to mention how much I appreciate the work you have done in RowTest</p>
<p>//Code starts </p>
<p>using NUnit.Framework;<br />
using NUnitExtension.RowTest;</p>
<p>namespace MultiRowTests<br />
{<br />
    [TestFixture]<br />
    public class TestClass<br />
    {<br />
        private bool setupHasRun = false; </p>
<p>        [SetUp]<br />
        public void Setup()<br />
        {<br />
            setupHasRun = true;<br />
        }</p>
<p>        [Test]<br />
        public void singleSetupTest()<br />
        {<br />
            Assert.That(setupHasRun);<br />
        }</p>
<p>        [RowTest]<br />
        [Row()]<br />
        public void rowSetupTest()<br />
        {<br />
            Assert.That(setupHasRun);<br />
        }<br />
    }<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gaurav</title>
		<link>http://www.andreas-schlapsi.com/2008/01/29/rowtest-extension-120/#comment-65</link>
		<dc:creator>Gaurav</dc:creator>
		<pubDate>Thu, 07 Feb 2008 02:38:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.andreas-schlapsi.com/2008/01/29/rowtest-extension-120/#comment-65</guid>
		<description>Hi Andreas,
  The above problem is solved.We were using Test Driven add-in with Nunit.When we chose the setup type to "Typical" for Test Driven 2.11 and installed it, it started detecting Rowtests.I guess the earlier user had installed some other setup type on this system.

GAURAV
HARSHA</description>
		<content:encoded><![CDATA[<p>Hi Andreas,<br />
  The above problem is solved.We were using Test Driven add-in with Nunit.When we chose the setup type to &#8220;Typical&#8221; for Test Driven 2.11 and installed it, it started detecting Rowtests.I guess the earlier user had installed some other setup type on this system.</p>
<p>GAURAV<br />
HARSHA</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gaurav</title>
		<link>http://www.andreas-schlapsi.com/2008/01/29/rowtest-extension-120/#comment-64</link>
		<dc:creator>Gaurav</dc:creator>
		<pubDate>Wed, 06 Feb 2008 13:38:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.andreas-schlapsi.com/2008/01/29/rowtest-extension-120/#comment-64</guid>
		<description>Hi,
 Rowtests are itself not getting detected with version 1.2.0.I am using Nunit 2.4.
GAURAV
HARSHA</description>
		<content:encoded><![CDATA[<p>Hi,<br />
 Rowtests are itself not getting detected with version 1.2.0.I am using Nunit 2.4.<br />
GAURAV<br />
HARSHA</p>
]]></content:encoded>
	</item>
</channel>
</rss>
