<?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: C++ Unit Testing With Boost.Test</title>
	<atom:link href="http://www.alittlemadness.com/2009/03/31/c-unit-testing-with-boosttest/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.alittlemadness.com/2009/03/31/c-unit-testing-with-boosttest/</link>
	<description>A man needs a little madness, or else he never dares cut the rope and be free. -Nikos Kazantzakis</description>
	<lastBuildDate>Wed, 10 Mar 2010 09:45:50 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Gui</title>
		<link>http://www.alittlemadness.com/2009/03/31/c-unit-testing-with-boosttest/comment-page-1/#comment-208285</link>
		<dc:creator>Gui</dc:creator>
		<pubDate>Wed, 10 Mar 2010 09:45:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.alittlemadness.com/2009/03/31/c-unit-testing-with-boosttest/#comment-208285</guid>
		<description>Does anyone know if it is possible to use boost.test without any other boost library ?</description>
		<content:encoded><![CDATA[<p>Does anyone know if it is possible to use boost.test without any other boost library ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gui</title>
		<link>http://www.alittlemadness.com/2009/03/31/c-unit-testing-with-boosttest/comment-page-1/#comment-208198</link>
		<dc:creator>Gui</dc:creator>
		<pubDate>Tue, 09 Mar 2010 14:20:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.alittlemadness.com/2009/03/31/c-unit-testing-with-boosttest/#comment-208198</guid>
		<description>Did not see the previous answer. Seems that on ubuntu boost is multi-threading enable. Following line solve the problem :
g++ -ohello -lboost_unit_test_framework-mt hello.cpp</description>
		<content:encoded><![CDATA[<p>Did not see the previous answer. Seems that on ubuntu boost is multi-threading enable. Following line solve the problem :<br />
g++ -ohello -lboost_unit_test_framework-mt hello.cpp</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ulrik Gammelby</title>
		<link>http://www.alittlemadness.com/2009/03/31/c-unit-testing-with-boosttest/comment-page-1/#comment-208197</link>
		<dc:creator>Ulrik Gammelby</dc:creator>
		<pubDate>Tue, 09 Mar 2010 14:11:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.alittlemadness.com/2009/03/31/c-unit-testing-with-boosttest/#comment-208197</guid>
		<description>I agree with the other posters, thanks for this gentle and useful introduction to boost tests. The official documentation is WAY too heavy on (irrelevant) words, such as general chatter about why testing is a good thing and long elaborations on how things looked earlier in the framework, confusing the picture if you are just scanning for a specific piece of information.</description>
		<content:encoded><![CDATA[<p>I agree with the other posters, thanks for this gentle and useful introduction to boost tests. The official documentation is WAY too heavy on (irrelevant) words, such as general chatter about why testing is a good thing and long elaborations on how things looked earlier in the framework, confusing the picture if you are just scanning for a specific piece of information.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gui</title>
		<link>http://www.alittlemadness.com/2009/03/31/c-unit-testing-with-boosttest/comment-page-1/#comment-208195</link>
		<dc:creator>Gui</dc:creator>
		<pubDate>Tue, 09 Mar 2010 14:04:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.alittlemadness.com/2009/03/31/c-unit-testing-with-boosttest/#comment-208195</guid>
		<description>I may be stupid but is the parameter &quot;-lboost_unit_test_framework&quot; supposed to work while compiling hello.cpp ? I get this outpur error :
/usr/bin/ld: cannot find -lboost_unit_test_framework ...</description>
		<content:encoded><![CDATA[<p>I may be stupid but is the parameter &#8220;-lboost_unit_test_framework&#8221; supposed to work while compiling hello.cpp ? I get this outpur error :<br />
/usr/bin/ld: cannot find -lboost_unit_test_framework &#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Essex</title>
		<link>http://www.alittlemadness.com/2009/03/31/c-unit-testing-with-boosttest/comment-page-1/#comment-206935</link>
		<dc:creator>Essex</dc:creator>
		<pubDate>Sat, 27 Feb 2010 01:18:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.alittlemadness.com/2009/03/31/c-unit-testing-with-boosttest/#comment-206935</guid>
		<description>This little introduction is better than any of the official Boost.Test documentation. I&#039;m actually using it now, rather than getting more and more baffled in a mountain of technical specifications.</description>
		<content:encoded><![CDATA[<p>This little introduction is better than any of the official Boost.Test documentation. I&#8217;m actually using it now, rather than getting more and more baffled in a mountain of technical specifications.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joe</title>
		<link>http://www.alittlemadness.com/2009/03/31/c-unit-testing-with-boosttest/comment-page-1/#comment-205858</link>
		<dc:creator>Joe</dc:creator>
		<pubDate>Fri, 19 Feb 2010 09:50:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.alittlemadness.com/2009/03/31/c-unit-testing-with-boosttest/#comment-205858</guid>
		<description>Thanks so much for writing this up!  This was way more helpful than the official Boost docs.</description>
		<content:encoded><![CDATA[<p>Thanks so much for writing this up!  This was way more helpful than the official Boost docs.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rakesh</title>
		<link>http://www.alittlemadness.com/2009/03/31/c-unit-testing-with-boosttest/comment-page-1/#comment-203634</link>
		<dc:creator>Rakesh</dc:creator>
		<pubDate>Sat, 30 Jan 2010 19:11:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.alittlemadness.com/2009/03/31/c-unit-testing-with-boosttest/#comment-203634</guid>
		<description>Thankyou very much. I was struggling a lot to find the boost testing framework and this is the only tutorial that helped me ( in all respects) so far.</description>
		<content:encoded><![CDATA[<p>Thankyou very much. I was struggling a lot to find the boost testing framework and this is the only tutorial that helped me ( in all respects) so far.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: test</title>
		<link>http://www.alittlemadness.com/2009/03/31/c-unit-testing-with-boosttest/comment-page-1/#comment-202297</link>
		<dc:creator>test</dc:creator>
		<pubDate>Tue, 19 Jan 2010 06:30:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.alittlemadness.com/2009/03/31/c-unit-testing-with-boosttest/#comment-202297</guid>
		<description>Thank you so much. This is THE MOST useful tutorial I have found so far on boost testing. It is easy to understand and very well written. Thanks so much once again.</description>
		<content:encoded><![CDATA[<p>Thank you so much. This is THE MOST useful tutorial I have found so far on boost testing. It is easy to understand and very well written. Thanks so much once again.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Albob</title>
		<link>http://www.alittlemadness.com/2009/03/31/c-unit-testing-with-boosttest/comment-page-1/#comment-195859</link>
		<dc:creator>Albob</dc:creator>
		<pubDate>Wed, 02 Dec 2009 19:08:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.alittlemadness.com/2009/03/31/c-unit-testing-with-boosttest/#comment-195859</guid>
		<description>@Michael: I think that you have to link against a lib and provide its exact name because there are a lot of configurations available and G++ doesn&#039;t know how to choose them. Somehow this is all automatic with Visual Studio.

By the way, thank you for this article, it gave me the BOOST_TEST_DYN_LINK that I missed on Ubuntu 9.04 (I had an &quot;undefined reference to: &#039;main&#039;&quot;).</description>
		<content:encoded><![CDATA[<p>@Michael: I think that you have to link against a lib and provide its exact name because there are a lot of configurations available and G++ doesn&#8217;t know how to choose them. Somehow this is all automatic with Visual Studio.</p>
<p>By the way, thank you for this article, it gave me the BOOST_TEST_DYN_LINK that I missed on Ubuntu 9.04 (I had an &#8220;undefined reference to: &#8216;main&#8217;&#8221;).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michael</title>
		<link>http://www.alittlemadness.com/2009/03/31/c-unit-testing-with-boosttest/comment-page-1/#comment-187453</link>
		<dc:creator>Michael</dc:creator>
		<pubDate>Thu, 01 Oct 2009 05:58:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.alittlemadness.com/2009/03/31/c-unit-testing-with-boosttest/#comment-187453</guid>
		<description>On Ubuntu 9.10 I could not get this to work till I linked against boost_unit_test_framework-mt I don&#039;t know why this would be the case?  Any ideas?</description>
		<content:encoded><![CDATA[<p>On Ubuntu 9.10 I could not get this to work till I linked against boost_unit_test_framework-mt I don&#8217;t know why this would be the case?  Any ideas?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
