Xunit, since the 1.9 release back in Jan, supports async methods. (
http://bradwilson.typepad.com/blog/2012/01/xunit19.html )
This test fails in the xunit console runner, but passes in the resharper runner:
[Fact]
public async void AsyncMethod()
{
Assert.True(await Task.Run(() => false));
}