O MSTest tem um equivalente ao TestCase do NUnit?

Eu acho oTestCase recurso no NUnit bastante útil como uma maneira rápida de especificar parâmetros de teste sem precisar de um método separado para cada teste. Existe algo semelhante no MSTest?

<code> [TestFixture]  
 public class StringFormatUtilsTest  
 {  
     [TestCase("tttt", "")]  
     [TestCase("", "")]  
     [TestCase("t3a4b5", "345")]  
     [TestCase("3&amp;amp;5*", "35")]  
     [TestCase("123", "123")]  
     public void StripNonNumeric(string before, string expected)  
     {  
         string actual = FormatUtils.StripNonNumeric(before);  
         Assert.AreEqual(expected, actual);  
     }  
 }  
</code>

questionAnswers(5)

yourAnswerToTheQuestion