-
as seen on Stack Overflow
- Search for 'Stack Overflow'
NUnit is failing in C++/CLI with a System.IO.FileNotFoundException.
I have tried my own freshly-created project, the C++/CLI sample included with NUnit and the one from CodeProject How to use NUnit to test native C++ code using Visual Studio 2008sp1 with NUnit 2.5.5 as well as 2.4.8. I installed…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I could make a dll for NUnit (http://stackoverflow.com/questions/2967726/nunit-test-under-mono), but when I tried to run in with nunit-console.exe I get the following error message.
Runtime Environment -
OS Version: Unix 10.3.0.0
CLR Version: 2.0.50727.1433 ( 2.6.4 (tarball Thu Apr 22 13:24:33…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I have the following code in an Nunit test ...
string url = "";
url = @"http://localhost/ClientPortalDev/Account/LogOn";
ieStaticInstanceHelper = new IEStaticInstanceHelper();
ieStaticInstanceHelper.IE = new IE(url);
ieStaticInstanceHelper.IE.TextField(Find.ById("UserName")).TypeText("abc");
…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I'm trying to make use of the TheoryAttribute, introduced in NUnit 2.5. Everything works fine as long as the arguments are of a defined type:
[Datapoint]
public double[,] Array2X2 = new double[,] { { 1, 0 }, { 0, 1 } };
[Theory]
public void TestForArbitraryArray(double[,] array)
{
// ...
}
It…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hi
We got a problem with NUnit 2.5.3: nunit-console.exe does not return after finishing all tests. The process hangs forever.
Example: All tests succeed, but it keeps doing something. Output:
Runtime Environment -
OS Version: Microsoft Windows NT 5.1.2600 Service Pack 3
CLR Version: 2.0.50727…
>>> More