<?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: Using Moq ExpectSet</title>
	<atom:link href="http://damianblog.com/2008/09/17/using-moq-expectset/feed/" rel="self" type="application/rss+xml" />
	<link>http://damianblog.com/2008/09/17/using-moq-expectset/</link>
	<description>.NET from Geneva, Switzerland</description>
	<lastBuildDate>Mon, 07 May 2012 06:33:28 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>By: Weekly Web Nuggets #30 : Code Monkey Labs</title>
		<link>http://damianblog.com/2008/09/17/using-moq-expectset/comment-page-1/#comment-241</link>
		<dc:creator>Weekly Web Nuggets #30 : Code Monkey Labs</dc:creator>
		<pubDate>Mon, 23 Feb 2009 03:45:52 +0000</pubDate>
		<guid isPermaLink="false">http://damianblog.com/2008/09/17/using-moq-expectset/#comment-241</guid>
		<description>[...] Using Moq ExpectSet: Damian Mehers shows us how to use the ExpectSet method in Moq. [...]</description>
		<content:encoded><![CDATA[<p>[...] Using Moq ExpectSet: Damian Mehers shows us how to use the ExpectSet method in Moq. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dmehers</title>
		<link>http://damianblog.com/2008/09/17/using-moq-expectset/comment-page-1/#comment-240</link>
		<dc:creator>dmehers</dc:creator>
		<pubDate>Wed, 08 Oct 2008 06:43:56 +0000</pubDate>
		<guid isPermaLink="false">http://damianblog.com/2008/09/17/using-moq-expectset/#comment-240</guid>
		<description>Fantastic - thanks Daniel.

/Damian</description>
		<content:encoded><![CDATA[<p>Fantastic &#8211; thanks Daniel.</p>
<p>/Damian</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Daniel Cazzulino</title>
		<link>http://damianblog.com/2008/09/17/using-moq-expectset/comment-page-1/#comment-239</link>
		<dc:creator>Daniel Cazzulino</dc:creator>
		<pubDate>Wed, 08 Oct 2008 04:08:27 +0000</pubDate>
		<guid isPermaLink="false">http://damianblog.com/2008/09/17/using-moq-expectset/#comment-239</guid>
		<description>Btw, you can now use ExpectSet(f =&gt; f.Name, &quot;kzu&quot;)

:)</description>
		<content:encoded><![CDATA[<p>Btw, you can now use ExpectSet(f =&gt; f.Name, &#8220;kzu&#8221;)<br />
 <img src='http://damianblog.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Hamish</title>
		<link>http://damianblog.com/2008/09/17/using-moq-expectset/comment-page-1/#comment-238</link>
		<dc:creator>Hamish</dc:creator>
		<pubDate>Sat, 04 Oct 2008 04:29:44 +0000</pubDate>
		<guid isPermaLink="false">http://damianblog.com/2008/09/17/using-moq-expectset/#comment-238</guid>
		<description>Oh, and stick with Moq, it&#039;s brilliant.</description>
		<content:encoded><![CDATA[<p>Oh, and stick with Moq, it&#8217;s brilliant.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Hamish</title>
		<link>http://damianblog.com/2008/09/17/using-moq-expectset/comment-page-1/#comment-237</link>
		<dc:creator>Hamish</dc:creator>
		<pubDate>Sat, 04 Oct 2008 04:29:16 +0000</pubDate>
		<guid isPermaLink="false">http://damianblog.com/2008/09/17/using-moq-expectset/#comment-237</guid>
		<description>Hey Daniel, Thanks for this. Just what I was looking for.

One thing though... (there always is isn&#039;t there?). That moq.VerifyAll(); at the end of the test? I wouldn&#039;t. if you set .Verifiable() on the expectation you can use .Verify() and it will check all expectations that you set .Verifiable() on. .VerifyAll() will check _all_ expectations.

I&#039;ve had to wean myself off of MockBehaviour.Strict and .VerifyAll(). They seem like such a good idea until you refactor something and find out how brittle they make your tests.

All the best</description>
		<content:encoded><![CDATA[<p>Hey Daniel, Thanks for this. Just what I was looking for.</p>
<p>One thing though&#8230; (there always is isn&#8217;t there?). That moq.VerifyAll(); at the end of the test? I wouldn&#8217;t. if you set .Verifiable() on the expectation you can use .Verify() and it will check all expectations that you set .Verifiable() on. .VerifyAll() will check _all_ expectations.</p>
<p>I&#8217;ve had to wean myself off of MockBehaviour.Strict and .VerifyAll(). They seem like such a good idea until you refactor something and find out how brittle they make your tests.</p>
<p>All the best</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Reflective Perspective - Chris Alcock &#187; The Morning Brew #182</title>
		<link>http://damianblog.com/2008/09/17/using-moq-expectset/comment-page-1/#comment-236</link>
		<dc:creator>Reflective Perspective - Chris Alcock &#187; The Morning Brew #182</dc:creator>
		<pubDate>Thu, 18 Sep 2008 06:59:24 +0000</pubDate>
		<guid isPermaLink="false">http://damianblog.com/2008/09/17/using-moq-expectset/#comment-236</guid>
		<description>[...] Using Moq ExpectSet - Damian Mehers gives a nice simple example of using the Moq Mocking Framework ExpectSet functionality. [...]</description>
		<content:encoded><![CDATA[<p>[...] Using Moq ExpectSet &#8211; Damian Mehers gives a nice simple example of using the Moq Mocking Framework ExpectSet functionality. [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

