I have not heard of such a feature. Unit testing without Asserts is simply testing that no errors are thrown in which case would typically pass every time.
I am rather surprised that your programmers are actually writing tests without Asserts, this seems very unprofessional. I would suggest pointing them towards reading a few online courses on Test Driven Development where typically you write a test to fail and then make the programming changes to make it pass (where in this case Assert.IsTrue(true) wouldn't even begin to make sense.
Also provide the template:
[Test]
public void TestCase
{
//Setup
//Run Test
//Process Results
//Assert
}
I would highly suggest making the purchase for this screencast:
http://tekpub.com/productions/ft_tdd_wilson
It provides a good idea on how to write unit tests and how to properly follow TDD.