<?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: A Dependency Injection example with Spring.NET</title>
	<atom:link href="http://www.ytechie.com/2008/06/a-dependency-injection-example-with-springnet.html/feed" rel="self" type="application/rss+xml" />
	<link>http://www.ytechie.com/2008/06/a-dependency-injection-example-with-springnet.html</link>
	<description>Productive software development using ASP.NET, C#, Adobe Flex, and other technologies and tools.</description>
	<lastBuildDate>Mon, 08 Mar 2010 19:11:25 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: julia</title>
		<link>http://www.ytechie.com/2008/06/a-dependency-injection-example-with-springnet.html/comment-page-1#comment-1462</link>
		<dc:creator>julia</dc:creator>
		<pubDate>Sat, 30 May 2009 14:29:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.ytechie.com/2008/06/a-dependency-injection-example-with-springnet.html#comment-1462</guid>
		<description>can see some idea summary,
but can&#039;t see the details,

other blog, we can do
1,[download source code]
2,read detail code explaining 
3, [copy code]

but this have nothing can learn.
Is A Dependency Injection example with Spring.NET ?
no, only part of some example , not full project
can be run.</description>
		<content:encoded><![CDATA[<p>can see some idea summary,<br />
but can&#8217;t see the details,</p>
<p>other blog, we can do<br />
1,[download source code]<br />
2,read detail code explaining<br />
3, [copy code]</p>
<p>but this have nothing can learn.<br />
Is A Dependency Injection example with Spring.NET ?<br />
no, only part of some example , not full project<br />
can be run.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Technical Related Notes &#187; Blog Archive &#187; links for 2008-11-23</title>
		<link>http://www.ytechie.com/2008/06/a-dependency-injection-example-with-springnet.html/comment-page-1#comment-1284</link>
		<dc:creator>Technical Related Notes &#187; Blog Archive &#187; links for 2008-11-23</dc:creator>
		<pubDate>Mon, 12 Jan 2009 01:02:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.ytechie.com/2008/06/a-dependency-injection-example-with-springnet.html#comment-1284</guid>
		<description>[...] A Dependency Injection example with Spring.NET (tags: C# Spring.NET) [...]</description>
		<content:encoded><![CDATA[<p>[...] A Dependency Injection example with Spring.NET (tags: C# Spring.NET) [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: New Version of SimpleTracking.com</title>
		<link>http://www.ytechie.com/2008/06/a-dependency-injection-example-with-springnet.html/comment-page-1#comment-649</link>
		<dc:creator>New Version of SimpleTracking.com</dc:creator>
		<pubDate>Wed, 27 Aug 2008 12:56:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.ytechie.com/2008/06/a-dependency-injection-example-with-springnet.html#comment-649</guid>
		<description>[...] Nearly a complete rewrite, making the code far more modular and manageable. [...]</description>
		<content:encoded><![CDATA[<p>[...] Nearly a complete rewrite, making the code far more modular and manageable. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SOG knives</title>
		<link>http://www.ytechie.com/2008/06/a-dependency-injection-example-with-springnet.html/comment-page-1#comment-591</link>
		<dc:creator>SOG knives</dc:creator>
		<pubDate>Fri, 18 Jul 2008 21:50:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.ytechie.com/2008/06/a-dependency-injection-example-with-springnet.html#comment-591</guid>
		<description>&lt;strong&gt;SOG knives...&lt;/strong&gt;

Interesting ideas... I wonder how the Hollywood media would portray this?...</description>
		<content:encoded><![CDATA[<p><strong>SOG knives&#8230;</strong></p>
<p>Interesting ideas&#8230; I wonder how the Hollywood media would portray this?&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: superjason</title>
		<link>http://www.ytechie.com/2008/06/a-dependency-injection-example-with-springnet.html/comment-page-1#comment-485</link>
		<dc:creator>superjason</dc:creator>
		<pubDate>Fri, 13 Jun 2008 17:34:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.ytechie.com/2008/06/a-dependency-injection-example-with-springnet.html#comment-485</guid>
		<description>Eber, the fundamental problem is that at some point, you have to actually run all of the code together to make sure it works (integration testing).

In some way, you have to hook the real pieces together, and you usually don&#039;t want those real pieces running in a unit test. For example, I don&#039;t want to be hitting the FedEx server every time I run a unit test.

At this point, you&#039;re sure 99% of your code works, now you need to test the actual application. I don&#039;t think you can ever avoid testing the actual application and be 100% sure that it&#039;s going to run.

See also: http://en.wikipedia.org/wiki/Integration_testing

Fortunately, you can often automate the integration testing. For example, I can test my website using Selenium and verify that it works correctly against the actual servers.</description>
		<content:encoded><![CDATA[<p>Eber, the fundamental problem is that at some point, you have to actually run all of the code together to make sure it works (integration testing).</p>
<p>In some way, you have to hook the real pieces together, and you usually don&#8217;t want those real pieces running in a unit test. For example, I don&#8217;t want to be hitting the FedEx server every time I run a unit test.</p>
<p>At this point, you&#8217;re sure 99% of your code works, now you need to test the actual application. I don&#8217;t think you can ever avoid testing the actual application and be 100% sure that it&#8217;s going to run.</p>
<p>See also: <a href="http://en.wikipedia.org/wiki/Integration_testing" rel="nofollow" onclick="pageTracker._trackPageview('/outgoing/en.wikipedia.org/wiki/Integration_testing?referer=');">http://en.wikipedia.org/wiki/Integration_testing</a></p>
<p>Fortunately, you can often automate the integration testing. For example, I can test my website using Selenium and verify that it works correctly against the actual servers.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eber Irigoyen</title>
		<link>http://www.ytechie.com/2008/06/a-dependency-injection-example-with-springnet.html/comment-page-1#comment-484</link>
		<dc:creator>Eber Irigoyen</dc:creator>
		<pubDate>Fri, 13 Jun 2008 16:27:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.ytechie.com/2008/06/a-dependency-injection-example-with-springnet.html#comment-484</guid>
		<description>I think is funny (in a very bizarre way) when developers add a million lines of xml to make something fully testable/customizable/configurable... and what happens when you make a mistake on your xml?</description>
		<content:encoded><![CDATA[<p>I think is funny (in a very bizarre way) when developers add a million lines of xml to make something fully testable/customizable/configurable&#8230; and what happens when you make a mistake on your xml?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
