<?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: Test Driven Development in XCode</title>
	<atom:link href="http://blog.jayway.com/2010/01/15/test-driven-development-in-xcode/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.jayway.com/2010/01/15/test-driven-development-in-xcode/</link>
	<description>Sharing Experience</description>
	<lastBuildDate>Sun, 12 Feb 2012 05:23:29 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Ayon</title>
		<link>http://blog.jayway.com/2010/01/15/test-driven-development-in-xcode/comment-page-1/#comment-78689</link>
		<dc:creator>Ayon</dc:creator>
		<pubDate>Thu, 15 Sep 2011 11:15:39 +0000</pubDate>
		<guid isPermaLink="false">http://blog.jayway.com/?p=4301#comment-78689</guid>
		<description>Hi,
Nice tutorial. It helps me to start TDD in iOS. Good work. keep going.</description>
		<content:encoded><![CDATA[<p>Hi,<br />
Nice tutorial. It helps me to start TDD in iOS. Good work. keep going.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Arun</title>
		<link>http://blog.jayway.com/2010/01/15/test-driven-development-in-xcode/comment-page-1/#comment-78204</link>
		<dc:creator>Arun</dc:creator>
		<pubDate>Thu, 05 May 2011 05:38:15 +0000</pubDate>
		<guid isPermaLink="false">http://blog.jayway.com/?p=4301#comment-78204</guid>
		<description>Hi,
I am trying to create a Document-based application in Lion OS. In the .nib file i am using NSBrowser, i set the maximum column as 3 and Autosizing in all the direction. When i run the application i am getting only 2 column but after selecting or resizing the window i am able to see all the 3 columns.

Please let me know that it is a Lion OS issue or Xcode issue.

Thanks in Advance,
Arun</description>
		<content:encoded><![CDATA[<p>Hi,<br />
I am trying to create a Document-based application in Lion OS. In the .nib file i am using NSBrowser, i set the maximum column as 3 and Autosizing in all the direction. When i run the application i am getting only 2 column but after selecting or resizing the window i am able to see all the 3 columns.</p>
<p>Please let me know that it is a Lion OS issue or Xcode issue.</p>
<p>Thanks in Advance,<br />
Arun</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bob Sargent</title>
		<link>http://blog.jayway.com/2010/01/15/test-driven-development-in-xcode/comment-page-1/#comment-53644</link>
		<dc:creator>Bob Sargent</dc:creator>
		<pubDate>Tue, 24 Aug 2010 22:24:00 +0000</pubDate>
		<guid isPermaLink="false">http://blog.jayway.com/?p=4301#comment-53644</guid>
		<description>Thank you so much for the tutorial.  TDD is my goal and you&#039;ve shown me how to get there.</description>
		<content:encoded><![CDATA[<p>Thank you so much for the tutorial.  TDD is my goal and you&#8217;ve shown me how to get there.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Learning XCode iPad Development &#171; davidnimmo.com</title>
		<link>http://blog.jayway.com/2010/01/15/test-driven-development-in-xcode/comment-page-1/#comment-43061</link>
		<dc:creator>Learning XCode iPad Development &#171; davidnimmo.com</dc:creator>
		<pubDate>Sat, 19 Jun 2010 04:53:15 +0000</pubDate>
		<guid isPermaLink="false">http://blog.jayway.com/?p=4301#comment-43061</guid>
		<description>[...] to help me with configuring my first unit test&#8230; so far so good. I also found one article on Test Driven Development, but I haven&#8217;t gotten to try that one [...]</description>
		<content:encoded><![CDATA[<p>[...] to help me with configuring my first unit test&#8230; so far so good. I also found one article on Test Driven Development, but I haven&#8217;t gotten to try that one [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Christian Hedin</title>
		<link>http://blog.jayway.com/2010/01/15/test-driven-development-in-xcode/comment-page-1/#comment-24326</link>
		<dc:creator>Christian Hedin</dc:creator>
		<pubDate>Mon, 08 Feb 2010 14:00:13 +0000</pubDate>
		<guid isPermaLink="false">http://blog.jayway.com/?p=4301#comment-24326</guid>
		<description>Thanks, Briggs. It&#039;s supposed to be &#039;#import&#039; and I&#039;ve updated the article. I wonder if one of the templates in XCode inserted &#039;#include&#039; instead.</description>
		<content:encoded><![CDATA[<p>Thanks, Briggs. It&#8217;s supposed to be &#8216;#import&#8217; and I&#8217;ve updated the article. I wonder if one of the templates in XCode inserted &#8216;#include&#8217; instead.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Briggs</title>
		<link>http://blog.jayway.com/2010/01/15/test-driven-development-in-xcode/comment-page-1/#comment-24303</link>
		<dc:creator>Briggs</dc:creator>
		<pubDate>Sun, 07 Feb 2010 16:22:28 +0000</pubDate>
		<guid isPermaLink="false">http://blog.jayway.com/?p=4301#comment-24303</guid>
		<description>Looks like my post got scrubbed of the &lt; &amp; &gt; symbols.  Trying again with escaped HTML;

#import &lt;SenTestingKit/SenTestingKit.h&gt;
#import &quot;Calculator.h&quot;
@interface CalculatorTest : SenTestCase
{
Calculator *calc;
}
@end
@implementation CalculatorTest
// .. snipped test cases for space
@end</description>
		<content:encoded><![CDATA[<p>Looks like my post got scrubbed of the &lt; &amp; &gt; symbols.  Trying again with escaped HTML;</p>
<p>#import &lt;SenTestingKit/SenTestingKit.h&gt;<br />
#import &quot;Calculator.h&quot;<br />
@interface CalculatorTest : SenTestCase<br />
{<br />
Calculator *calc;<br />
}<br />
@end<br />
@implementation CalculatorTest<br />
// .. snipped test cases for space<br />
@end</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Briggs</title>
		<link>http://blog.jayway.com/2010/01/15/test-driven-development-in-xcode/comment-page-1/#comment-24301</link>
		<dc:creator>Briggs</dc:creator>
		<pubDate>Sun, 07 Feb 2010 16:18:07 +0000</pubDate>
		<guid isPermaLink="false">http://blog.jayway.com/?p=4301#comment-24301</guid>
		<description>I am rather new to objective-c (been a java guy for a decade) and was curious to know why you are using includes (not imports) and if are there syntax errors in your example files?  Should the header/implementation file contain this declaration instead?  

#import 
#import &quot;Calculator.h&quot;
@interface CalculatorTest : SenTestCase
{
	Calculator *calc;
} 
@end
@implementation CalculatorTest
// .. snipped test cases for space
@end

I noticed that you used &quot;#include &quot; but the actual path/name is &quot;&quot;. This might be working on your machine because your file system isn&#039;t configured to be case sensitive.  I did get mine working with the updated info though.

Thanks for your post!</description>
		<content:encoded><![CDATA[<p>I am rather new to objective-c (been a java guy for a decade) and was curious to know why you are using includes (not imports) and if are there syntax errors in your example files?  Should the header/implementation file contain this declaration instead?  </p>
<p>#import<br />
#import &#8220;Calculator.h&#8221;<br />
@interface CalculatorTest : SenTestCase<br />
{<br />
	Calculator *calc;<br />
}<br />
@end<br />
@implementation CalculatorTest<br />
// .. snipped test cases for space<br />
@end</p>
<p>I noticed that you used &#8220;#include &#8221; but the actual path/name is &#8220;&#8221;. This might be working on your machine because your file system isn&#8217;t configured to be case sensitive.  I did get mine working with the updated info though.</p>
<p>Thanks for your post!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: KW &#183; XCode での単体テスト</title>
		<link>http://blog.jayway.com/2010/01/15/test-driven-development-in-xcode/comment-page-1/#comment-23724</link>
		<dc:creator>KW &#183; XCode での単体テスト</dc:creator>
		<pubDate>Tue, 26 Jan 2010 15:08:30 +0000</pubDate>
		<guid isPermaLink="false">http://blog.jayway.com/?p=4301#comment-23724</guid>
		<description>[...] Test Driven Development in XCode XCode を使ったTDDについて解説しています。TDDの参考になりますよ。 [...]</description>
		<content:encoded><![CDATA[<p>[...] Test Driven Development in XCode XCode を使ったTDDについて解説しています。TDDの参考になりますよ。 [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: KW &#183; Links 1.26</title>
		<link>http://blog.jayway.com/2010/01/15/test-driven-development-in-xcode/comment-page-1/#comment-23722</link>
		<dc:creator>KW &#183; Links 1.26</dc:creator>
		<pubDate>Tue, 26 Jan 2010 14:02:52 +0000</pubDate>
		<guid isPermaLink="false">http://blog.jayway.com/?p=4301#comment-23722</guid>
		<description>[...] Test Driven Development in XCode &#8211; TDD for XCode [...]</description>
		<content:encoded><![CDATA[<p>[...] Test Driven Development in XCode &#8211; TDD for XCode [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Christian Hedin</title>
		<link>http://blog.jayway.com/2010/01/15/test-driven-development-in-xcode/comment-page-1/#comment-23195</link>
		<dc:creator>Christian Hedin</dc:creator>
		<pubDate>Fri, 22 Jan 2010 12:33:20 +0000</pubDate>
		<guid isPermaLink="false">http://blog.jayway.com/?p=4301#comment-23195</guid>
		<description>Thanks. I hope to have the Hudson blog post out next week.</description>
		<content:encoded><![CDATA[<p>Thanks. I hope to have the Hudson blog post out next week.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Marcus</title>
		<link>http://blog.jayway.com/2010/01/15/test-driven-development-in-xcode/comment-page-1/#comment-23091</link>
		<dc:creator>Marcus</dc:creator>
		<pubDate>Thu, 21 Jan 2010 18:49:07 +0000</pubDate>
		<guid isPermaLink="false">http://blog.jayway.com/?p=4301#comment-23091</guid>
		<description>Thanks nice post.  I&#039;ll try it tonight.    When will you incorporate this using Hudson?</description>
		<content:encoded><![CDATA[<p>Thanks nice post.  I&#8217;ll try it tonight.    When will you incorporate this using Hudson?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

