I have uploaded some code snippets to download that use some of my common patterns for unit testing using MSTest. Some are Typemock centric. Some depend on helper methods which are unpublished; implement in your own code or delete the references to them. They're not polished for release by any means, but you may find them useful.
Here's a quick list of what's in there.
<Title>Unit Test For ctor</Title>
<Shortcut>utc</Shortcut>
<Description>Code snippet for a ctor unit test.</Description>
<Title>Property = null</Title>
<Shortcut>utpn</Shortcut>
<Description>Code snippet for unit test to test setting a non-nullable property to a null value.</Description>
<Title>Unit Test A Property</Title>
<Shortcut>utp</Shortcut>
<Description>Code snippet for unit test to test a property</Description>
<Title>Unit Test</Title>
<Shortcut>utcp</Shortcut>
<Description>Code snippet for unit test to test a ctor that accepts a value that sets a property.</Description>
<Title>Property = (argument out of range)</Title>
<Shortcut>utpiv</Shortcut>
<Description>Code snippet to unit test setting a property to an invalid value and receiving a ArgumentOutRangeException.</Description>
<Title>Unit Test a method on a target.</Title>
<Shortcut>utm</Shortcut>
<Description>Code snippet to unit test a method on the target.</Description>
<Title>Typemock Recorder Block</Title>
<Shortcut>rx</Shortcut>
<Description>Code snippet for a recorder block for TypeMock</Description>