<?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: Mock Objects for C++, Part 4</title>
	<atom:link href="http://blogs.ijw.co.nz/chris/index.php/2008/11/mock-objects-for-c-part-4/feed/" rel="self" type="application/rss+xml" />
	<link>http://blogs.ijw.co.nz/chris/index.php/2008/11/mock-objects-for-c-part-4/</link>
	<description>Not quite a Yegge long.</description>
	<lastBuildDate>Thu, 29 Jul 2010 20:24:11 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: admin</title>
		<link>http://blogs.ijw.co.nz/chris/index.php/2008/11/mock-objects-for-c-part-4/comment-page-1/#comment-237</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Wed, 24 Dec 2008 21:55:11 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.ijw.co.nz/chris/index.php/2008/11/mock-objects-for-c-part-4/#comment-237</guid>
		<description>Peter:

Sounds like a plan. I&#039;m not surprised there are better ways to do this than what I&#039;m doing - a few of us just hacked this together because we needed something that worked :)</description>
		<content:encoded><![CDATA[<p>Peter:</p>
<p>Sounds like a plan. I&#8217;m not surprised there are better ways to do this than what I&#8217;m doing &#8211; a few of us just hacked this together because we needed something that worked <img src='http://blogs.ijw.co.nz/chris/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Peter Bindels</title>
		<link>http://blogs.ijw.co.nz/chris/index.php/2008/11/mock-objects-for-c-part-4/comment-page-1/#comment-235</link>
		<dc:creator>Peter Bindels</dc:creator>
		<pubDate>Wed, 24 Dec 2008 11:06:53 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.ijw.co.nz/chris/index.php/2008/11/mock-objects-for-c-part-4/#comment-235</guid>
		<description>This looks an *awful* lot like my mocking framework - including just about all the syntax, even. 

My selling point is that it all is in one header file so you have no library logic or include paths to worry about. Also, the part after this (argument matching) is very neatly implemented with true objects and operator== calls for the classes instead of a hack as you&#039;re insinuating.

Maybe worth a look to see if we can merge the code bases? I have no support whatsoever for repetition mentioning since I don&#039;t see the value of it over looping on a single expectation (except for optimization - which I don&#039;t do in my unit tests).</description>
		<content:encoded><![CDATA[<p>This looks an *awful* lot like my mocking framework &#8211; including just about all the syntax, even. </p>
<p>My selling point is that it all is in one header file so you have no library logic or include paths to worry about. Also, the part after this (argument matching) is very neatly implemented with true objects and operator== calls for the classes instead of a hack as you&#8217;re insinuating.</p>
<p>Maybe worth a look to see if we can merge the code bases? I have no support whatsoever for repetition mentioning since I don&#8217;t see the value of it over looping on a single expectation (except for optimization &#8211; which I don&#8217;t do in my unit tests).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: admin</title>
		<link>http://blogs.ijw.co.nz/chris/index.php/2008/11/mock-objects-for-c-part-4/comment-page-1/#comment-49</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Thu, 20 Nov 2008 19:53:38 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.ijw.co.nz/chris/index.php/2008/11/mock-objects-for-c-part-4/#comment-49</guid>
		<description>Or rather, their syntax deviates more than necessary from other Mock Object libraries (for Java, .NET, etc)</description>
		<content:encoded><![CDATA[<p>Or rather, their syntax deviates more than necessary from other Mock Object libraries (for Java, .NET, etc)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: admin</title>
		<link>http://blogs.ijw.co.nz/chris/index.php/2008/11/mock-objects-for-c-part-4/comment-page-1/#comment-48</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Thu, 20 Nov 2008 19:52:44 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.ijw.co.nz/chris/index.php/2008/11/mock-objects-for-c-part-4/#comment-48</guid>
		<description>Yes, AMOP is doing a similar thing, and looks nice. Their syntax is a bit on the ugly side though ;)</description>
		<content:encoded><![CDATA[<p>Yes, AMOP is doing a similar thing, and looks nice. Their syntax is a bit on the ugly side though <img src='http://blogs.ijw.co.nz/chris/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kirk Korver</title>
		<link>http://blogs.ijw.co.nz/chris/index.php/2008/11/mock-objects-for-c-part-4/comment-page-1/#comment-47</link>
		<dc:creator>Kirk Korver</dc:creator>
		<pubDate>Thu, 20 Nov 2008 19:26:11 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.ijw.co.nz/chris/index.php/2008/11/mock-objects-for-c-part-4/#comment-47</guid>
		<description>This just looks like a reimplementation of the amop. http://code.google.com/p/amop/. This is a good explanation of how this technique works.</description>
		<content:encoded><![CDATA[<p>This just looks like a reimplementation of the amop. <a href="http://code.google.com/p/amop/" rel="nofollow">http://code.google.com/p/amop/</a>. This is a good explanation of how this technique works.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris on Software &#187; Blog Archive &#187; Mock Objects for C++, Part 5</title>
		<link>http://blogs.ijw.co.nz/chris/index.php/2008/11/mock-objects-for-c-part-4/comment-page-1/#comment-36</link>
		<dc:creator>Chris on Software &#187; Blog Archive &#187; Mock Objects for C++, Part 5</dc:creator>
		<pubDate>Sat, 15 Nov 2008 06:39:36 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.ijw.co.nz/chris/index.php/2008/11/mock-objects-for-c-part-4/#comment-36</guid>
		<description>[...] Last time, we looked at how to recover argument and return types from the function signature, via a pile of templates. [...]</description>
		<content:encoded><![CDATA[<p>[...] Last time, we looked at how to recover argument and return types from the function signature, via a pile of templates. [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
