I want to create a SQL Select to do a unit test in MS SQL Server 2005. The basic idea is this:
select \'Test Name\', foo
You can also use:
select 'Test Name', iif(foo = 'Result', 1, 0) from bar where baz = (some criteria)
I know this was asked a while back, but I hope this helps someone out there.