Friday 4 May 2012

TestDriven.Net does not require [TestMethod]

Just found out something interesting about TestDriven.Net. It allows you to run code logic as a test, even when the [TestMethod] attribute is not on the method you're testing.

However don't try doing this with an client side integration test, as you'll just get an endpoint not set in code exception!

No comments:

Post a Comment

How to find the last interactive logons in Windows using PowerShell

Use the following powershell script to find the last users to login to a box since a given date, in this case the 21st April 2022 at 12pm un...