Forum member
MikkelChristensen
7 posts
Posts by MikkelChristensen
-
xunit theory tests are not run
Thx :) Tried your workaround suggestion - works like a charm! I'll re-test without the workaround when 1.37b ships. Thanks a lot for your feedback & time spent on helping me on - it is much appreciated.
25 Jan 2012 11:25 UTC
-
xunit theory tests are not run
I think I've found the problem after trying your empty-solution approach. The theory tests are being run when I use an empty solution, which is good news :) The test project in the empty solution references xunit & xunit.extensions, both in version 1.7.0.1540. Now, I have the following assembly …
25 Jan 2012 08:43 UTC
-
xunit theory tests are not run
Certainly: public class NCrunchTests { [Fact] public void WillBeRun() { Assert.True(false); } [Theory, InlineData(false)] public void WillNotBeRun(bool b) { Assert.True(b); } } Ove…
25 Jan 2012 05:52 UTC
-
xunit theory tests are not run
Fact tests run just fine. I cannot easily upgrade - I use libraries that reference xunit 1.7.
22 Jan 2012 22:26 UTC
-
xunit theory tests are not run
Here is the output from the processing queue for one of my test classes: [22:31:31.6822-TestExecutionTask-38] Launching task: [TestExecutionTask: [SnapshotComponent: PassiveFederationUnitTest, 1], 6 test(s), Gallio, BeingProcessed] [22:31:31.6831-TestExecutionTask-38] Process could not be found …
22 Jan 2012 21:58 UTC
-
xunit theory tests are not run
Hi - the output from the VS output window has some 775 kB data - I cannot post that many characters, I'm afraid. Do you have a different channel I can use?
22 Jan 2012 21:41 UTC
-
xunit theory tests are not run
All my tests (xunit theories) fail with the following message from NCrunch: This test was not executed during a planned execution run. Ensure your test project is stable and does not contain issues in initialisation/teardown fixtures. Running on a clean install of the release downloaded today…
22 Jan 2012 12:55 UTC