<?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/"
		>
<channel>
	<title>Comments on: CallContext and NUnit Woes</title>
	<atom:link href="http://averyblog.com/net/callcontext-and-nunit-woes/feed/" rel="self" type="application/rss+xml" />
	<link>http://averyblog.com/net/callcontext-and-nunit-woes/</link>
	<description>This is not the greatest tagline in the world... this is just a tribute.</description>
	<lastBuildDate>Mon, 11 Jan 2010 16:36:16 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Menard</title>
		<link>http://averyblog.com/net/callcontext-and-nunit-woes/comment-page-1/#comment-1074</link>
		<dc:creator>Menard</dc:creator>
		<pubDate>Mon, 13 Dec 2004 16:05:00 +0000</pubDate>
		<guid isPermaLink="false">http://averyblog.infozerk.net/?p=303#comment-1074</guid>
		<description>&lt;p&gt;Try marking your assembly (from AssemblyInfo.cs) with the &quot;AllowPartiallyTrustedCallers&quot; attribute.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Try marking your assembly (from AssemblyInfo.cs) with the &quot;AllowPartiallyTrustedCallers&quot; attribute.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: James Avery</title>
		<link>http://averyblog.com/net/callcontext-and-nunit-woes/comment-page-1/#comment-1073</link>
		<dc:creator>James Avery</dc:creator>
		<pubDate>Wed, 10 Nov 2004 15:15:00 +0000</pubDate>
		<guid isPermaLink="false">http://averyblog.infozerk.net/?p=303#comment-1073</guid>
		<description>&lt;p&gt;It could probably do the same thing it does with assemblies now. NUnit loads assemblies and does not lock them, not anymore anyway. Your solution sounds like it would not need any user configuration which would definitly be ideal.&lt;/p&gt;
&lt;p&gt;&lt;br&gt;&lt;/p&gt;
&lt;p&gt;&lt;br&gt;-James&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>It could probably do the same thing it does with assemblies now. NUnit loads assemblies and does not lock them, not anymore anyway. Your solution sounds like it would not need any user configuration which would definitly be ideal.</p>
<p></p>
<p>-James</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jamie Cansdale</title>
		<link>http://averyblog.com/net/callcontext-and-nunit-woes/comment-page-1/#comment-1072</link>
		<dc:creator>Jamie Cansdale</dc:creator>
		<pubDate>Wed, 10 Nov 2004 09:39:00 +0000</pubDate>
		<guid isPermaLink="false">http://averyblog.infozerk.net/?p=303#comment-1072</guid>
		<description>&lt;p&gt;Assembly locking would be the problem.  You don&#039;t want to load user assemblies into the default test runner app domain.&lt;/p&gt;
&lt;p&gt;&lt;br&gt;&lt;/p&gt;
&lt;p&gt;&lt;br&gt;The trick will be to completely isolate the test runner thread in the test domain.  This will involve a message pump to avoid making any callbacks on that thread.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Assembly locking would be the problem.  You don&#8217;t want to load user assemblies into the default test runner app domain.</p>
<p></p>
<p>The trick will be to completely isolate the test runner thread in the test domain.  This will involve a message pump to avoid making any callbacks on that thread.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: James Avery</title>
		<link>http://averyblog.com/net/callcontext-and-nunit-woes/comment-page-1/#comment-1071</link>
		<dc:creator>James Avery</dc:creator>
		<pubDate>Tue, 09 Nov 2004 13:18:00 +0000</pubDate>
		<guid isPermaLink="false">http://averyblog.infozerk.net/?p=303#comment-1071</guid>
		<description>&lt;p&gt;That is what I suggested to Jamie. Perhaps have an assembly folders configuration option in NUnit where you could specify the folders where your assembly lives.&lt;/p&gt;
&lt;p&gt;&lt;br&gt;&lt;/p&gt;
&lt;p&gt;&lt;br&gt;I am not sure if this is the route he will take or not though.&lt;/p&gt;
&lt;p&gt;&lt;br&gt;&lt;/p&gt;
&lt;p&gt;&lt;br&gt;-James&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>That is what I suggested to Jamie. Perhaps have an assembly folders configuration option in NUnit where you could specify the folders where your assembly lives.</p>
<p></p>
<p>I am not sure if this is the route he will take or not though.</p>
<p></p>
<p>-James</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: TomB</title>
		<link>http://averyblog.com/net/callcontext-and-nunit-woes/comment-page-1/#comment-1070</link>
		<dc:creator>TomB</dc:creator>
		<pubDate>Tue, 09 Nov 2004 13:15:00 +0000</pubDate>
		<guid isPermaLink="false">http://averyblog.infozerk.net/?p=303#comment-1070</guid>
		<description>&lt;p&gt;Maybe if it was possible to set the BaseDirectory property of the AppDomain that nUnit creates... (instead of using nUnit&#039;s home directory it could be configured to be the bin folder where your assemblies lived)&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Maybe if it was possible to set the BaseDirectory property of the AppDomain that nUnit creates&#8230; (instead of using nUnit&#8217;s home directory it could be configured to be the bin folder where your assemblies lived)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Darren Neimke</title>
		<link>http://averyblog.com/net/callcontext-and-nunit-woes/comment-page-1/#comment-1069</link>
		<dc:creator>Darren Neimke</dc:creator>
		<pubDate>Tue, 09 Nov 2004 07:42:00 +0000</pubDate>
		<guid isPermaLink="false">http://averyblog.infozerk.net/?p=303#comment-1069</guid>
		<description>&lt;p&gt;Maybe by putting your code on one side of an Interface and, when you run your unit tests, put in some stub code to implement the interface?&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Maybe by putting your code on one side of an Interface and, when you run your unit tests, put in some stub code to implement the interface?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
