Domande taggate «mstest»

Microsoft .NET Unit Testing Framework (MSTest)

5
MSTest ha un equivalente a TestCase di NUnit?
Trovo la TestCasefunzione in NUnit abbastanza utile come un modo rapido per specificare i parametri di test senza bisogno di un metodo separato per ogni test. C'è qualcosa di simile in MSTest? [TestFixture] public class StringFormatUtilsTest { [TestCase("tttt", "")] [TestCase("", "")] [TestCase("t3a4b5", "345")] [TestCase("3&5*", "35")] [TestCase("123", "123")] public void StripNonNumeric(string …



4
Perché questo asserisce lancia un'eccezione di formato quando si confrontano le strutture?
Sto cercando di affermare l'uguaglianza di due System.Drawing.Sizestrutture e ricevo un'eccezione di formato invece del previsto errore di asserzione. [TestMethod] public void AssertStructs() { var struct1 = new Size(0, 0); var struct2 = new Size(1, 1); //This throws a format exception, "System.FormatException: Input string was not in a correct format." …


Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.