<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>.NET Software Development Videos &#38; Tutorial Directory &#187; mock</title>
	<atom:link href="http://www.dotnet-tv.com/tag/mock/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dotnet-tv.com</link>
	<description>.NET Software Development Tutorials and Videos: c#, asp, Sql Server, Linq, Visual Basic, Silverlight</description>
	<lastBuildDate>Thu, 02 Feb 2012 19:35:29 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>AutoMoq Introduction</title>
		<link>http://www.dotnet-tv.com/2011/08/29/automoq-introduction/</link>
		<comments>http://www.dotnet-tv.com/2011/08/29/automoq-introduction/#comments</comments>
		<pubDate>Mon, 29 Aug 2011 17:51:53 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Software Testing]]></category>
		<category><![CDATA[mock]]></category>
		<category><![CDATA[open source tools]]></category>

		<guid isPermaLink="false">http://www.dotnet-tv.com/?p=2050</guid>
		<description><![CDATA[AutoMoq is an &#8220;auto-mocking&#8221; container that automatically creates  for Moq any fake objects that are necessary to instantiate the class under test. You can access those fakes through the mocker or you can just ignore them if they&#8217;re not important.
 
Video Producer: Darren Cauthon
]]></description>
		<wfw:commentRss>http://www.dotnet-tv.com/2011/08/29/automoq-introduction/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The State of the Art on .NET</title>
		<link>http://www.dotnet-tv.com/2010/08/04/the-state-of-the-art-on-net/</link>
		<comments>http://www.dotnet-tv.com/2010/08/04/the-state-of-the-art-on-net/#comments</comments>
		<pubDate>Wed, 04 Aug 2010 12:30:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[Software Testing]]></category>
		<category><![CDATA[fsharp]]></category>
		<category><![CDATA[mock]]></category>
		<category><![CDATA[NUnit]]></category>
		<category><![CDATA[open source tools]]></category>
		<category><![CDATA[unit testing]]></category>

		<guid isPermaLink="false">http://www.dotnet-tv.com/?p=1755</guid>
		<description><![CDATA[Amanda Laucher and Josh Graham present at an introductory level some of the most important elements of the .NET ecosystem: F#, M, Boo, NUnit, RhinoMocks, Moq, NHibernate, Castle, Windsor, NVelocity, Guerilla WCF, Azure, MEF. 
http://www.infoq.com/presentations/The-State-of-the-Art-on-.NET
]]></description>
		<wfw:commentRss>http://www.dotnet-tv.com/2010/08/04/the-state-of-the-art-on-net/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Moles: Mocking the Un-Mockable</title>
		<link>http://www.dotnet-tv.com/2010/04/26/moles-mocking-the-un-mockable/</link>
		<comments>http://www.dotnet-tv.com/2010/04/26/moles-mocking-the-un-mockable/#comments</comments>
		<pubDate>Mon, 26 Apr 2010 12:18:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Software Testing]]></category>
		<category><![CDATA[es]]></category>
		<category><![CDATA[mock]]></category>
		<category><![CDATA[open source tools]]></category>
		<category><![CDATA[unit testing]]></category>

		<guid isPermaLink="false">http://www.dotnet-tv.com/?p=1703</guid>
		<description><![CDATA[In this episode we are going to take at how to use Pex and Moles for .Net. Unit testing is great, but most free isolation frameworks require that your mocks implement an interface. But what do you do when the class you are trying to mock is static or sealed with no interface. If you can’t modify the class then your unit testing efforts are usually stuck. Moles, the new free isolation framework from Microsoft, supports mocking almost any CLR based class (including sealed and static classes). 
http://www.dimecasts.net/Content/WatchEpisode/170
]]></description>
		<wfw:commentRss>http://www.dotnet-tv.com/2010/04/26/moles-mocking-the-un-mockable/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Learning how to use Manual Mocks for Testing</title>
		<link>http://www.dotnet-tv.com/2010/03/01/learning-how-to-use-manual-mocks-for-testing/</link>
		<comments>http://www.dotnet-tv.com/2010/03/01/learning-how-to-use-manual-mocks-for-testing/#comments</comments>
		<pubDate>Mon, 01 Mar 2010 12:20:45 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Software Testing]]></category>
		<category><![CDATA[mock]]></category>
		<category><![CDATA[unit testing]]></category>

		<guid isPermaLink="false">http://www.dotnet-tv.com/?p=1655</guid>
		<description><![CDATA[In this episode we are going to take a look at how to use manual mocks for testing. Often times when creating unit tests we need to work in isolation in order to cover the paths we are attempting to test. When we want to test in isolation you can use a testing technique where you mock out your dependencies. When using Mocks you can either do it manually (what we are looking at) or you can use a mocking framework like Rhino Mocks. Either way you achieve the same ...]]></description>
		<wfw:commentRss>http://www.dotnet-tv.com/2010/03/01/learning-how-to-use-manual-mocks-for-testing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Testable Software</title>
		<link>http://www.dotnet-tv.com/2009/11/09/testable-software/</link>
		<comments>http://www.dotnet-tv.com/2009/11/09/testable-software/#comments</comments>
		<pubDate>Mon, 09 Nov 2009 12:32:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Architecture]]></category>
		<category><![CDATA[Software Testing]]></category>
		<category><![CDATA[mock]]></category>

		<guid isPermaLink="false">http://www.dotnet-tv.com/?p=1491</guid>
		<description><![CDATA[In this talk David Evans and Mike Scott discuss the effect architectural decisions have on application testability. They assert that a testable architecture is inherently a better architecture, and demonstrate how testability in itself is an essential dimension in any architecture because of its relationship to good architectural patterns and practices.
http://skillsmatter.com/podcast/open-source-dot-net/testable-software
]]></description>
		<wfw:commentRss>http://www.dotnet-tv.com/2009/11/09/testable-software/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Isolation Frameworks: Learning to use Partial Mocks</title>
		<link>http://www.dotnet-tv.com/2009/10/05/isolation-frameworks-learning-to-use-partial-mocks/</link>
		<comments>http://www.dotnet-tv.com/2009/10/05/isolation-frameworks-learning-to-use-partial-mocks/#comments</comments>
		<pubDate>Mon, 05 Oct 2009 11:30:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Software Testing]]></category>
		<category><![CDATA[mock]]></category>
		<category><![CDATA[open source tools]]></category>
		<category><![CDATA[rhino]]></category>
		<category><![CDATA[unit testing]]></category>

		<guid isPermaLink="false">http://www.dotnet-tv.com/?p=1460</guid>
		<description><![CDATA[In this episode we are going to continue our series on learning how to use an isolation framework (Rhino Mocks) to help create simpler and more reliable unit tests. This time around we are going to be focusing how to use Partial Mocks to test abstract classes and methods within a concrete class.
http://www.dimecasts.net/Content/WatchEpisode/142
]]></description>
		<wfw:commentRss>http://www.dotnet-tv.com/2009/10/05/isolation-frameworks-learning-to-use-partial-mocks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Isolation Frameworks: Mocking Out/Ref Arguments</title>
		<link>http://www.dotnet-tv.com/2009/09/07/isolation-frameworks-mocking-outref-arguments/</link>
		<comments>http://www.dotnet-tv.com/2009/09/07/isolation-frameworks-mocking-outref-arguments/#comments</comments>
		<pubDate>Mon, 07 Sep 2009 11:38:39 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Software Testing]]></category>
		<category><![CDATA[mock]]></category>
		<category><![CDATA[open source tools]]></category>
		<category><![CDATA[rhino]]></category>
		<category><![CDATA[unit testing]]></category>

		<guid isPermaLink="false">http://www.dotnet-tv.com/?p=1441</guid>
		<description><![CDATA[In this episode we are going to continue our series on learning how to use an isolation framework (Rhino Mocks) to help create simpler and more reliable unit tests. We are going to focusing this episode on how to setup you mocks when you need to mock a class with either Out or Ref arguments.
http://www.dimecasts.net/Content/WatchEpisode/138
]]></description>
		<wfw:commentRss>http://www.dotnet-tv.com/2009/09/07/isolation-frameworks-mocking-outref-arguments/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Interaction Based Testing with Rhino Mocks</title>
		<link>http://www.dotnet-tv.com/2009/08/28/interaction-based-testing-with-rhino-mocks/</link>
		<comments>http://www.dotnet-tv.com/2009/08/28/interaction-based-testing-with-rhino-mocks/#comments</comments>
		<pubDate>Fri, 28 Aug 2009 10:47:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Software Testing]]></category>
		<category><![CDATA[mock]]></category>
		<category><![CDATA[open source tools]]></category>
		<category><![CDATA[rhino]]></category>
		<category><![CDATA[unit testing]]></category>

		<guid isPermaLink="false">http://www.dotnet-tv.com/?p=1428</guid>
		<description><![CDATA[Beyond the simplest scenarios, all objects had collaborators that they work with. This flies in the face of testing objects in isolation. This is the problem that mock objects were created to solve. In this talk you will learn what mock objects are, how to utilize them and best practices on when / how to utilize them. Rhino Mocks is a mock objects framework for .Net whose core goals are to let the developer rely on the compiler work well with refactoring tools.

]]></description>
		<wfw:commentRss>http://www.dotnet-tv.com/2009/08/28/interaction-based-testing-with-rhino-mocks/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Isolation Frameworks: Learning how to validate expectations</title>
		<link>http://www.dotnet-tv.com/2009/07/21/isolation-frameworks-learning-how-to-validate-expectations/</link>
		<comments>http://www.dotnet-tv.com/2009/07/21/isolation-frameworks-learning-how-to-validate-expectations/#comments</comments>
		<pubDate>Tue, 21 Jul 2009 20:14:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Software Testing]]></category>
		<category><![CDATA[mock]]></category>
		<category><![CDATA[open source tools]]></category>
		<category><![CDATA[rhino]]></category>
		<category><![CDATA[unit testing]]></category>

		<guid isPermaLink="false">http://www.dotnet-tv.com/?p=1345</guid>
		<description><![CDATA[In this episode we are going to continue our series on learning how to use an isolation framework (Rhino Mocks) to help create simpler and more reliable unit tests. We will focus our learning this time around on the various ways you can setup and validate expectations on your stubs/fakes. Validating these expectations will allow your to confirm in tests your dependencies are being used in the manor expected.
http://www.dimecasts.net/Content/WatchEpisode/127
Resources
Rhino  Mocks Home Page
Episode Source Code
]]></description>
		<wfw:commentRss>http://www.dotnet-tv.com/2009/07/21/isolation-frameworks-learning-how-to-validate-expectations/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Isolation Frameworks: Learning how to Stub &amp; Fake Data</title>
		<link>http://www.dotnet-tv.com/2009/07/20/isolation-frameworks-learning-how-to-stub-fake-data/</link>
		<comments>http://www.dotnet-tv.com/2009/07/20/isolation-frameworks-learning-how-to-stub-fake-data/#comments</comments>
		<pubDate>Mon, 20 Jul 2009 11:06:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Software Testing]]></category>
		<category><![CDATA[agile]]></category>
		<category><![CDATA[mock]]></category>
		<category><![CDATA[open source tools]]></category>
		<category><![CDATA[rhino]]></category>
		<category><![CDATA[unit testing]]></category>

		<guid isPermaLink="false">http://www.dotnet-tv.com/?p=1334</guid>
		<description><![CDATA[In this episode we are going to start learning how to use an isolation framework (Rhino Mocks) to help create simpler and more reliable unit tests. We will start off our learning experience by learning the basics. We will be taking a look at how to setup stubs/fakes in order to hard wire return values for our objects/methods.
http://www.dimecasts.net/Content/WatchEpisode/125
Resources
Rhino  Mocks Home Page
Episode Source Code
]]></description>
		<wfw:commentRss>http://www.dotnet-tv.com/2009/07/20/isolation-frameworks-learning-how-to-stub-fake-data/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Introduction to the AutoMocking Container in StructureMap</title>
		<link>http://www.dotnet-tv.com/2009/03/25/introduction-to-the-automocking-container-in-structuremap/</link>
		<comments>http://www.dotnet-tv.com/2009/03/25/introduction-to-the-automocking-container-in-structuremap/#comments</comments>
		<pubDate>Wed, 25 Mar 2009 12:36:24 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Software Testing]]></category>
		<category><![CDATA[mock]]></category>
		<category><![CDATA[open source tools]]></category>
		<category><![CDATA[structuremap]]></category>

		<guid isPermaLink="false">http://www.dotnet-tv.com/?p=1239</guid>
		<description><![CDATA[In this episode you will take a look at how to use the AutoMocking Container that  is part of StructureMap 2.5.  You will be shown how to setup and use this  container to reduce noise in your tests.
http://www.dimecasts.net/Content/WatchEpisode/62
]]></description>
		<wfw:commentRss>http://www.dotnet-tv.com/2009/03/25/introduction-to-the-automocking-container-in-structuremap/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Introduction to Mocking with Moq</title>
		<link>http://www.dotnet-tv.com/2008/12/23/introduction-to-mocking-with-moq/</link>
		<comments>http://www.dotnet-tv.com/2008/12/23/introduction-to-mocking-with-moq/#comments</comments>
		<pubDate>Tue, 23 Dec 2008 13:08:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Software Testing]]></category>
		<category><![CDATA[mock]]></category>
		<category><![CDATA[moq]]></category>
		<category><![CDATA[open source tools]]></category>

		<guid isPermaLink="false">http://www.softdevtube.com/?p=849</guid>
		<description><![CDATA[In this episode we will learn how to use the Mocking framework Moq. This is an  introductory overview of using Moq and is meant for those who are new to either  mocking or Moq.
http://www.dimecasts.net/Content/WatchEpisode/8
Additional resources
Moq home page
]]></description>
		<wfw:commentRss>http://www.dotnet-tv.com/2008/12/23/introduction-to-mocking-with-moq/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

