Questions tagged [pnunit]

17 questions
14
votes
3 answers

Has anyone found a way to run C# Selenium RC tests in parallel?

Has anyone found a way to run Selenium RC / Selenium Grid tests, written in C# in parallel? I've currently got a sizable test suite written using Selenium RC's C# driver. Running the entire test suite takes a little over an hour to complete. I…
Peter Bernier
  • 8,038
  • 6
  • 38
  • 53
12
votes
2 answers

Running parallel test with PNunit, can't read from config file

I wanna run pararell tests in Browserstack. This is my test project RTest (Unit test project in VS 2013) -UnitTest1.cs -RTest.config I open Nunit and browse to my dll bin/debug/RTest.dll and Nunit finds my test case Problem My RTest.config file…
10
votes
5 answers

is NUnit bad choice for Selenium test?

I have read umpteen answers on SO while searching for NUnit + dependent methods + order of test execution. Every single answer suggests that forcing any set of order for unit tests is extremely evil. I am writing Selenium tests using NUnit. So I am…
Tarun
  • 3,456
  • 10
  • 48
  • 82
5
votes
5 answers

Selenium Grid with parallel testing using C#/NUnit

I've got several unit tests written with NUnit that are calling selenium commands. I've got 2 win2k3 server boxes setup, one is running selenium grid hub along with 2 selenium rc's. The other box is running 5 selenium rc's. All of them are…
seth
  • 171
  • 2
  • 8
3
votes
1 answer

Alternative to PNUnit for parallel Unit Testing

I have been working on Parallel Unit Testing with the help of PnUnit (Parallel NUnit) in one of my project. Now I want to replace this which is equivalent to PNunit for parallel testing which can run with NUnit or XUnit in dotNet. Can anyone…
Moiz
  • 2,409
  • 5
  • 27
  • 50
2
votes
1 answer

Troubleshooting PNUnit at the client end

I'm using PNUnit framework (based on NUnit) to run tests in Parallel. Basically the Runner deploys the PNUnitAgent on a client machine and sends it an NUnit Test as a dll file (as is normal for running PNUnit tests). The problem is that the test is…
Mugen
  • 1,417
  • 5
  • 22
  • 40
2
votes
1 answer

PNUnit Error Message when running Selenium Tests in Visual Studio

I'm working on trying to PNunit working for some Sauce Labs tests. But when I try launching it using the PNUnit Launcher.exe, I get the following error message: "The test PNUnit_Test.SauceTest.TestCase couldn't be found in the assembly…
CV_88
  • 31
  • 3
2
votes
2 answers

How to force the PNUnit agent to run under .NET 4.0.

I saw in the link https://groups.google.com/forum/#!topic/nunit-discuss/0wUEW1mD-S4 that Charlie answer a question with the next answer: .NET 4.0 if necessary, using a separate process. PNUnit uses NUnit. but I think it calls NUnit at a lower level…
1
vote
3 answers

The test couldn't be found in the assembly

I was trying to execute a sample PNunit tests, but it is failing with the following error The test xxx couldn't be found in the assembly xxx.dll I have followed the Pnunit doc, but it is not helpful. Here is the test case using…
Srikanth Gurram
  • 1,022
  • 1
  • 10
  • 22
1
vote
3 answers

parallel execution in nunit for bdd test cases

I am working on BDD (written in selenium webdriver with c#). For sequential execution we were using nunit but now the client requirement is parallel execution. Gone through so many documentation but only found Pnunit. Steps executed till…
Neeraj Hatwal
  • 49
  • 1
  • 1
  • 8
1
vote
0 answers

Using PNUnit for Testing

I am trying to set testcase for mywebsite, I want to test multiple users at a time. I come to conclusion that it will be possible with PNUnit. But I know nothing about that, I have search on google but I found nothing. I got one link [blog]:…
rohit patil
  • 111
  • 4
1
vote
1 answer

How to get application to use specific version of .NET?

I am using pnunit to run nunit tests on remote machines, the pnunit agent loads the test and runs it in Windows 2008 but the test fails to load in Windows 2003, the agent error is INFO PNUnit.Agent.PNUnitAgent - Registering channel on port…
carrutherji
  • 1,115
  • 10
  • 18
1
vote
2 answers

Specflow tests in parallel : PNunit - I don't want to have to specify every test in config

I have successfully got pNunit (http://www.plasticscm.com/infocenter/technical-articles/pnunit.aspx) working to run my specflow tests in parallel. I really don't like the fact I have to specify that the specific tests I would like to run on each…
Lee Cook
  • 573
  • 4
  • 18
1
vote
1 answer

How to use NUnit Addins under PNUnit

I want to use NUnit Addins and run tests using PNUnit. It is possible or am I just doing something wrong? It works individually, but when I run through PNunit it ignores NUnit Addins that use EventListeners. Thanks in advance for your answers and…
0
votes
1 answer

"System.ArgumentNullException : Argument cannot be null" while running NUnit tests through command line

While running NUnit tests through command line (nunit-console.exe assemblyName.dll), ConfigurationManager is not able to read the keys from 'App.config' file hence the program is throwing "System.ArgumentNullException : Argument cannot be null" I…
Srikanth Gurram
  • 1,022
  • 1
  • 10
  • 22
1
2