MbUnit is a generative unit test framework for the .NET Framework.
0
votes
0answers
16 views
Getting DependsOn Attribute to work with StaticTestFactory
When generating Tests with a StaticTestFactory in mbunit, the test suite needs to run only if a previous test passes. In the below code sample, The test Factory_ShouldNotRun_Test is executed even when ...
0
votes
1answer
8 views
MbUnit Gallio WaitN Right-Click Testing on a link
I want to test right click on a link by using MbUnit, Gallio and WaitN. Currently I can not see what is the way to do that... It seems that there is no method for right click which I can call from the ...
0
votes
0answers
12 views
Format what is output when using AreElementsEqualIgnoringOrder in MBUnit
AreElementsEqualIgnoringOrder and other list comparison functions in MBUnit can present a staggering amount of information when performing a comparison.
For example:
Expected elements to be equal ...
0
votes
0answers
45 views
Teamcity MSBuild Gallio integration [closed]
I am new at this.
I am trying to create a task in Teamcity to run my tests created with MBunit, Gallio.
I searched quite some time but I could not find a solution. Does anyone has a manual how to ...
2
votes
0answers
47 views
Create NUnit tests analogous to a MbUnit TestSuiteFixture
Is it possible to achieve the same (or close to the same) functionality as a MbUnit TestSuiteFixture using NUnit? I need to generate sets of dynamic test cases and MbUnit's TestSuiteFixture is the ...
0
votes
1answer
60 views
Test data source in MBUnit like in NUnit
How can I annotate my MBUnit test with a test data source attribute like in NUnit:
Pseudocode like its in NUnit:
[TestCaseSource("GetData")]
public void Test(int value)
{
}
private static ...
0
votes
1answer
190 views
Debug Unit Tests using Resharper 7 for MBUnit throws an exception
I have installed the Gallio Resharper Test Runner found at http://code.google.com/p/mb-unit/issues/detail?id=900#c9 Per the instructions at How to support MBUnit tests in Resharper 7.
When I right ...
0
votes
1answer
46 views
Set log level for Gallio execution log
How do I configure log4net or my Gallio test runners (Icarus and Echo) to use a different logging level for the Gallio Execution Log and my own file appender. I want my log file to have a DEBUG log ...
0
votes
1answer
78 views
Display Gallio reports on CruiseControl.Net
I am setting up a CruiseControl.Net build server. My project compiles, and runs unit tests.
In my ccnet.config I have this:
<tasks>
<msbuild>
...
0
votes
0answers
21 views
Intgrate MBUnit tests in Team Build 2012
I need to integrate MBunit test runs as part of Team Build 2012, I searched the web and all results point to some TFS build controller configuration that I have to set up.
basically I want to be able ...
0
votes
0answers
249 views
datadriven multi-browser Selenium Grid2 MbUnit/Gallio C# tests timeout
I am working in C# with Selenium Grid2 and MbUnit/Gallio. I read that a combination of datasets can be used to drive MbUnit UsingFactories alternative in MbUnit v3. So, I am trying to use MbUnit to ...
1
vote
0answers
40 views
Can I fail a test in MBUnit if an exception is thrown in FixtureTeardown?
If a test goes into native code and throws an accessviolation on shutdown - MBUnit notices this but still passes the test (all the individual tests passed - but there was a crash on shutdown)
So I ...
0
votes
1answer
24 views
MbUnit: How to notify a routine under test that it was called from the testing environment
I have a routine that reads directory information from the registry. If called from the test environment it needs to return one location (a test data directory). If not called from the test ...
0
votes
0answers
68 views
How to get test result in MBUnit
I use MBUnit and Gallio. I want to take screenshot if test resul is fail of browser before it will be closed (I use WebDriver with c#). How I can get test result in test?
0
votes
1answer
67 views
MbUnit: Run code after all fixtures have been run
I'm using MbUnit + Gallio. I know that MbUnit has attributes which can be applied to methods which should run:
[FixtureSetUp] - before each fixture
[FixtureTearDown] - after each fixture
[SetUp] - ...
0
votes
0answers
48 views
FlatFileDataObject - Test skipped because it is parameterized but no data was provided
I am trying to convert my tests using FlatFileDataObject instead of CsvData. Unfortunatelly I am not able to get it to work. Below you see the 2 extracts of the tests. The first one works with ...
0
votes
1answer
80 views
Gallio unit test startup code
This is going to be an amateur level question. Is there a way to add start up code to a test project that uses MBUnit 3.4.0.0? I tried adding [TestFixture] and [FixtureSetUp] attributes to code ...
0
votes
1answer
105 views
Assert throws ObjectDisposedException even though TextWriter is not used
I have a unit test that is throwing an ObjectDisposedException for a method that used to be using a TextWriter, but no longer is. I've tried cleaning the solution and rebuilding, but can't seem to ...
1
vote
1answer
78 views
Cannot write to gallio.echo console using NativeConsole.Instance in 64 bit OS
With Windows 7 32-bit I was able to output text to Gallio.Echo runner using Gallio.Runtime.ConsoleSupport.NativeConsole.Instance.WriteLine(""). But I'm failed with it in Windows 7 64-bit. Is there any ...
2
votes
1answer
140 views
Tests failing in CruiseControl but succeed when I run them
I have CruiseControl.NET (v 1.6.7981.1) set up on a Windows 7 Pro dedicated build machine.
I have a VS2012 project setup to build and then run MBUnit tests using Gallio.Echo.exe.
My problem is that ...
3
votes
1answer
137 views
How to use AOP from DI Frameworks With C# TestFrameworks? (NOT for the item under test)
My apologies in advance for a terrible title- suggestions welcome!
I've been reading about DI and AOP, and I think I grasp the basics; at least for the canonical example of adding logging.
I would ...
0
votes
0answers
59 views
mbunit - how to get the test result of a datadriven test?
I have a test with the following setup:
[Test]
[Parallelizable]
[Row("BE"]
[Row("NL"]
public void test(string locale)
{
try
{
do something
}
finally
{
here I want to do something if the ...
3
votes
0answers
149 views
unit testing in debug mode using MBUnit 3.4 or XUnit, and Test Driven .NET 3.4.2808, on VS 2012 with .NET 4.5 fails
So I just upgraded a project to .NET 4.5 on VS 2012. Now if I run the tests, they run just fine, but when I run tests in debug mode by right clicking in a unit test and clicking on "Test With --> ...
2
votes
0answers
218 views
Selenium grid 2 - Parallelized datadriven tests
I am pretty new in this area, so apologies for the question.
I am trying to run datadriven tests in parallel, using Selenium Grid2
here is my setup of the test:
[Test]
[Parallelizable]
...
5
votes
2answers
820 views
How to support MBUnit tests in Resharper 7
Since I upgraded to VS2012, my R#5 license was not useful anymore. After downloading the R#7.0.1 and installing I realized that MbUnit no longer had builtin support for R#7.
Since I spent some time ...
3
votes
1answer
303 views
Getting test runner to work with Gallio from Nuget
I think I'm missing something here. I installed Tesdriven and then Gallio (third link from top - Gallio 3.5 x64 installer)
Then I installed the mbunit dlls from Nuget because I didn't want to include ...
0
votes
0answers
101 views
Using Visual Studio generated SOAP service reference in multithreaded testing (MBUnit)
I have written MbUnit tests which consume a SOAP service via a client generated by "Add service reference" in VS 2010.
The tests are run in parallel by using the DegreeOfParallelism attribute, and ...
0
votes
1answer
93 views
PostSharp vs. MbUnit: TypeLoadException
I have a small solution with an WPF GUI project, some business logic in library projects and test projects using MbUnit/ Gallio. Everything worked fine so far.
After I added PostSharp Diagnostics ...
4
votes
3answers
333 views
Why isn't xUnit.net's FactAttribute AttributeUsage.Inheritable?
Having not written a unit testing framework before, it seems to me that an inheritable Fact attribute would make it easier to write abstract test classes or test interfaces if certain types in an ...
0
votes
0answers
65 views
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
...
0
votes
1answer
148 views
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 ...
0
votes
1answer
132 views
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 ...
1
vote
1answer
76 views
MbUnit - Terminate Test from within SetUp method
I want to Terminate my test with a specific outcome from within the SetUp Method.
I have tried both SilentTestException and Assert.Terminate and Assert.TerminateSilently but the actual Test method ...
2
votes
1answer
244 views
Does mbunit gallio ignore Test Order when using Parallelizable?
We are using mbunit gallio with [TestFixture, Parallelizable] testfixtures and [Test(Order = X), Parallelizable] test attributes, it all works fine apart from test order being effectively ignored no ...
0
votes
0answers
218 views
Including images in MBunit report exports
We execute MBunit tests in a CI system that generate HTML reports, as well as machine readable reports. I'd like to attach images to the HTML reports.
When running via Gallio.Icarus, the images show ...
0
votes
1answer
203 views
Mbunit - Gallio. Get name of the currently executing test
Is there a way to get the name of the currently executing test from ie the Setup method of a test fixture?
2
votes
4answers
364 views
Any way to ignore Possible Null Reference Exception warnings when using Assert statements?
I do not want to disable the warnings completely, just when it's in an Assert statement.
So for example if I have the following two lines
var someObject = GetObject();
Assert.IsNotNull(someObject, ...
1
vote
0answers
101 views
MbUnit and DataDrivenTests how to run single Row&
I'm trying to move big project from NUnit to MbUnit(Gallio). And I've big(for me) problem in DataDriven Tests(
Current MbUnit example Gallio exploring as single test case.
[Test]
[Row("111qqq", ...
0
votes
2answers
100 views
How to retrieve exception that caused a test to fail from MbUnit TestContext
I had a look at TestContext.CurrentContext.Outcome but it doesn't have what I'm looking for.
Thanks
Pawel
1
vote
0answers
58 views
Running parallel tests in separate AppDomains/Proceses with MbUint
Is it possible to run tests in parallel with mbunit and AppDomain/Process level isolation?
Thanks
Pawel
0
votes
2answers
3k views
How to execute concurrent tests with Selenium WebDriver on a single machine?
My goal is to run multiple tests on a single machine in parallel. For that I'm using Selenium WebDriver with Firefox and Mbunit. Unfortunately it looks like like driver creation in Selenium is not ...
1
vote
2answers
298 views
Unable to output log messages in MbUnit + TestDriven
I am unable to to output log messages to console via the Common.Logging framework in MbUnit tests run by TestDriven. I am not sure if it has to do with the way Gallio is registered with TestDriven. ...
0
votes
1answer
100 views
Migration from MBUnit v2 to v3 and the ProviderFactory is gone
In MBUnit v2 I did this:
public class ConnectionStringFactory
{
[Factory]
public string ConnectionString
{
get
{
return ...
0
votes
1answer
50 views
MBUnit calls a testmethod as often as many chars a factory string parameter returns?
Why is my Test method called as often as many chars the _ConnectionString returns???
The con variable in the test method gets always passed the next char of the ConnectionString property like
con = ...
0
votes
1answer
246 views
Allow own TestContext class to inject different connections Strings inVisual Studio Unit Test Project
In MBUnit I can annotate my Test class with a Factory and multiple getter returning an oracle/sql/mysql connection string which can be obtained by every test method in the test class.
How can I do ...
1
vote
1answer
305 views
How to write custom message when exception thrown like Gallio/MbUnit?
I am using PostSharp with Gallio/MbUnit.
I would like to be able, from a test case, to catch exceptions and write a custom message for the exceptions I catch to wherever exceptions are written. The ...
0
votes
1answer
101 views
Register a Gallio zip installation with TestDriven.Net
I want to register a copy of the Gallio zip installation with TestDriven.Net. In another thread, a member has mentioned that the Gallio installer needs to run after the TD installer in order to ...
0
votes
1answer
72 views
Internal Error when starting up Gallio testrunner from Nant scripts
When Gallio starts up to start running our regression test with watiN, I get the following error:
[gallio] Gallio NAnt Task - Version 3.2 build 744
[gallio] Start time: 1:07 PM
...
0
votes
2answers
878 views
Parallel Testing with MBUnit/Gallio using Data Driven Test Cases
I've been doing a lot of reading up on RemoteWebDriver for Selenium 2 using Selenium Grid. At the moment my tests are generated in the TesT() using the [Test] Attribute.
I have a TestCritiera class ...
1
vote
0answers
49 views
Is there a way I can use Castle to inject dependencies into tests (MbUnit)?
I've got unit tests written in C# using MbUnit & I have a bunch of helper classes that I use for constructing the test environment. Is there a way to have MbUnit use Castle to resolve the test ...
