Questions tagged [mbunit]

MbUnit is a generative unit test framework for the .NET Framework.

MbUnit provides advanced unit testing support with advanced fixtures to enable developers and testers to test all aspects of their software.

There are two current versions of MbUnit, v2 and v3.

MbUnit v3 is the current version of the MbUnit Framework. It is based on the Gallio Test Automation Platform which provides a stunning array of interoperable test tools. MbUnit v3 has been rewritten from the ground up to provide a compelling suite of testing features, native support for .NET 2.0 and .NET 3.5, better documentation, and cross-platform compatibility with Mono.

MbUnit v2 is the older version of the MbUnit Framework. It is still actively maintained for the benefit of existing users.

248 questions
0
votes
0 answers

passing object in the Row attribute of a unit test

i am trying to pass an object alongside with other parameters in the Row attribute of a unit test. [Row("Test1", new CustomField(), 3)] // parameters MUST be string, object and int public void Test_Constructor(string testType,…
raberana
  • 11,739
  • 18
  • 69
  • 95
0
votes
1 answer

passing an object in the attribute of a unit test

how could i pass an object in my unit test? here's my code: [Test] [Row( "test",5,new CustomField())] public void Test_Constructor(string type, int number, CustomField customField) { ..... } it returns an…
raberana
  • 11,739
  • 18
  • 69
  • 95
0
votes
1 answer

How to run NCover v1.5.8 & Gallio v3.3 on x64 machine

I'm struggling with NCover v1.5.8 & Gallio v3.3 on x64 machine. It can run all the tests but cannot produce the coverage report. The error message: "Profiled process terminated. Profiler connection not established" The command line I…
Van Thoai Nguyen
  • 986
  • 9
  • 22
0
votes
1 answer

mbunit v2 vs v3 xml report files

Our test source tree currently contains c# projects that either contain mbunit v2 tests or v3 tests (the newest projects). Our old v2 test projects were exes that used the "autorunner" to generate XML reports. Since the new projects are using Gallio…
Ben
0
votes
2 answers

Use of in NAnt fails

I got stuck up when I tried to run the Unit Test written using mbunit from NAnt. when I tried this lines of code in NAntbuilder.
Ganesh Astroved
  • 2,421
  • 2
  • 17
  • 9
0
votes
2 answers

Setting up Hudson with Selenium RC to run tests written in C#

I just deployed a Hudson server and configured it to checkout, build and deploy to a testing http server. Now I want more =) I have some Selenium RC tests wrtten in C#/.Net, using the MbUnit infrastructure, that runs ok on Gallio Icarus. How to…
Seiti
  • 2,138
  • 2
  • 21
  • 33
-1
votes
1 answer

NCover, Mbunit, command line Profiler connection can not connect?

I am trying to use NCover 1.5.8 with Mbunit 2.4.2.130. I am using the following example from a bat file. I everytime I try running this, it tells that I can not connect to the NCOVER process? SET…
user154366
  • 581
  • 2
  • 5
  • 19
-2
votes
1 answer

Looking for alternatives to MbUnit's parallel test, using [attributes]

MbUnit uses the [Parallelizable(TestScope.*)] attribute for parallel tests, however I cannot use MbUnit because it seems to be discontinued (or soon to be discontinued). I would like to do something similar with another testing framework, ideally…
evg02gsa3
  • 571
  • 5
  • 17
1 2 3
16
17