I have discovered that these seem to be the two main ways of testing for exceptions:
Assert.Throws(()=>MethodThatThrows()); [ExpectedExc
You may also strong type the error you're expecting (like the old attrib version).
Assert.Throws(() => breakingAction())