Use workers=1. Zero means base it on the number of processors.
To unsubscribe from this group and stop receiving emails from it, send an email to nunit-discuss+unsubscribe@googlegroups.com.
What do you mean by "test" in this context? A test method? A fixture?
Are you using --workers=0?
To unsubscribe from this group and stop receiving emails from it, send an email to nunit-discuss+unsubscribe@googlegroups.com.
NUnit has no code to detect your Sleep status and switch to another test. It does seem more likely that you would notice two tests running in parallel during a Sleep, however.
So let's check to see if any parallelism is involved. Do you use the Parallelizable attribute anywhere? Do you run multiple test assemblies?
To unsubscribe from this group and stop receiving emails from it, send an email to nunit-discuss+unsubscribe@googlegroups.com.
Test Filters
Test: WLP.Test.PlatformTest.TransportSwitchingTests=> WLP.Test.PlatformTest.TransportSwitchingTests.TestNoDevice
--------------------------------------------------------------------------------------------
Disable dongle and USB
--------------------------------------------------------------------------------------------
=> WLP.Test.PlatformTest.TransportSwitchingTests.TestSwitch
--------------------------------------------------------------------------------------------
Step 1. Connections: USB and Dongle are both enabled.
--------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------
Step 2. Connections: Disabling the USB connection.
--------------------------------------------------------------------------------------------
Errors and Failures
1) Failed : WLP.Test.PlatformTest.TransportSwitchingTests.TestSwitch
Condition was not met within specified duration.
Expected: True
But was: False
=> WLP.Test.PlatformTest.UsbPlatformTests.TestBasic
But we are only seeing a summary of pass/fails:
Test Filters
Test: WLP.Test.PlatformTest.TransportSwitchingTests=> WLP.Test.PlatformTest.TransportSwitchingTests.TestNoDevice
--------------------------------------------------------------------------------------------
Disable dongle and USB
--------------------------------------------------------------------------------------------
=> WLP.Test.PlatformTest.TransportSwitchingTests.TestSwitch
--------------------------------------------------------------------------------------------
Step 1. Connections: USB and Dongle are both enabled.
--------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------
Step 2. Connections: Disabling the USB connection.
--------------------------------------------------------------------------------------------
=> WLP.Test.PlatformTest.UsbPlatformTests.TestBasic
..
.
.
Errors and Failures 1) Failed : WLP.Test.PlatformTest.TransportSwitchingTests.TestSwitch Condition was not met within specified duration. Expected: True But was: FalseIf the test fails immediately we can't even see the "=> WLP.Test.PlatformTest.TestXXX" that indicates the start of a test. When looking in the log it seems as if the test was not initiated at all (although not the case)
Hi,