divyang4481 / mb-unit

Automatically exported from code.google.com/p/mb-unit
0 stars 0 forks source link

Gallio.Icarus 3.3.458 x64 failed to load assembly with exception #868

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
Steps to reproduce the problem:
1. Add one of mine nUnit assembly built for .net 4.0
2. After loading complete appears unhanded exception (see attachment)
3. Icarus "Start" button is disabled now

What is the expected output? What do you see instead?
Gallio 3.3.442 x64 loads everything ok

What version of the product are you using? On what operating system?
* Gallio.Icarus 3.3.458 x64
* nUnit 2.5.10
* VS2010 SP1
* c# 4.0
* Microsoft Windows Server 2008 R2 Enterprise 7601

Original issue reported on code.google.com by akim.bo...@gmail.com on 15 Nov 2011 at 6:11

Attachments:

GoogleCodeExporter commented 8 years ago

Original comment by grahamr...@gmail.com on 15 Nov 2011 at 8:39

GoogleCodeExporter commented 8 years ago
We'have the same issue with the same setup. Only the OS differs, we've Windows 
7 64bit.

Original comment by p...@born2code.net on 16 Jul 2012 at 10:13

GoogleCodeExporter commented 8 years ago
I get this issue when the test case parameter is too long:
        [Test]
        [TestCase(3, null, 1.09861228866811)]
        [TestCase(3, 2, 1.58496250072116)]
        [TestCase(3, 3.2, 0.944514055620738)]
        public void Convert(object value, object parameter, double result)

Would cause that exception.
        [Test]
        [TestCase(3, null, 1.09861)]
        [TestCase(3, 2, 1.58496)]
        [TestCase(3, 3.2, 0.94451)]
        public void Convert(object value, object parameter, double result)
Does not.

Original comment by ser...@gmail.com on 16 Aug 2012 at 7:47