Sto usando Visual Studio 2010 Beta 2. Ho un singolo [TestClass], che ha un [TestInitialize], [TestCleanup]e alcuni [TestMethods]. Ogni volta che viene eseguito un metodo di prova, vengono eseguiti ANCHE i metodi di inizializzazione e pulizia! Ho avuto l'impressione che il [TestInitialize]e [TestCleanup]dovrebbe essere eseguito solo una volta, per ogni …
NUnit ha una funzione chiamata Valori, come di seguito: [Test] public void MyTest( [Values(1,2,3)] int x, [Values("A","B")] string s) { // ... } Ciò significa che il metodo di prova verrà eseguito sei volte: MyTest(1, "A") MyTest(1, "B") MyTest(2, "A") MyTest(2, "B") MyTest(3, "A") MyTest(3, "B") Stiamo usando MSTest ora, …
We use cookies and other tracking technologies to improve your browsing experience on our website,
to show you personalized content and targeted ads, to analyze our website traffic,
and to understand where our visitors are coming from.
By continuing, you consent to our use of cookies and other tracking technologies and
affirm you're at least 16 years old or have consent from a parent or guardian.