Hi Julien, Skipping report generation message from TD.Net is new to me though the issue could be that the versions of MbUnit used by TD.NET (TD.NET picks up assemblies set from the registry, normally from C:\Program Files\MbUnit, under HKLM\Software\MutantDesign\TestDriven.NET\TestRunners\MbUnit) and the one you referenced for your test project is different. When this happens, i get the "No tests found" message.
If this is the cause for you, you can try out Sir Jay Flowers' solution from here <http://groups.google.com/group/MbUnitUser/msg/a5b458235ebffe25>. On 3/29/07, Julien Boulay <[EMAIL PROTECTED]> wrote: > > > Hi, > > I'm using MbUnit for a short time with TD.net and Visual studio 2005. > At first, all worked well but since a week, mbunit has not generated any > report anymore. > When I execute a (simple) test with TD.net, I get a "skipping report > generation". > When I type " mbunit.cons TestReport.exe /rt:Xml > /ap:D:\TestReport\TestReport\bin\Debug /rf:d: " in a console I get the > message below. > > Please advise > Best regards > Julien BOULAY > > > > I made a simplistic class to test > <code> > using System; > using System.Collections.Generic; > using System.Text; > > using MbUnit.Framework; > > namespace TestReport > { > [TestFixture] > public class TestReport > { > > [Test] > public void testReport() > { > Assert.AreEqual(4, 2 + 2); > } > } > } > </code> > > and I get this : > > Parsed arguments: > -- Parsed Arguments > Files: > TestReport.exe > Assembly paths: > D:\TestReport\TestReport\bin\Debug > Report folder: d: > Report Name Format: mbunit-{0}{1} > Report types: > Xml > Show reports: False > Filter Category: > Filter Author: > Filter Namespace: > Filter Type: > Verbose: False > ShadowCopyFiles: False > > Start time: 12:24 > [info] Loading test assemblies > [info] Starting execution > [info] Sorting assemblies by dependencies > [info] etting up fixture colors > [info] Loading TestReport > [info] Found 1 tests > [info] Running fixtures. > [info] Tests finished: 1 tests, 1 success, 0 failures, 0 ignored > [info] All Tests finished: 1 tests, 1 success, 0 failures, 0 ignored in > 0,015624 > 9 seconds > [info] Creating reports in D:\TestReport\TestReport\bin\Debug > [info] Created xml report > [info] MbUnit execution finished in 0,8906193s. > > I may make a mistake in my code or in my installation. > I use : > * MbUnit 2.3.105 (I test with 2.4.143 and it's same) > * TestDriven.net 2.0.1948 > * .net framework 2.0 > > Julien BOULAY > > > > > > > -- ---------------------- joeycalisay http://devpinoy.org/blogs/joeycalisay/ --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "MbUnit.User" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/MbUnitUser?hl=en -~----------~----~----~----~------~----~------~--~---
