Forum member

Jonh04

20 posts

Posts by Jonh04

  1. Ncrunch Fody ContainsTypeChecker

    I think I was able to deduce what the problem was. It seems one project has a dependency to a newer fody package, changing this to align with the other projects seems to have made it go away. A better message would be useful. Telling me that the version is incorrect, instead of trying to use it …

  2. Ncrunch Fody ContainsTypeChecker

    Thanks for your quick replies! I did see that issue with fody not being found while searching for solutions. But that doesn't seem to be the issue i'm experiencing. It seems to find fody and the typecast that fails is on line 15 inside fody.dll I could be wrong, looking forward to hearing wha…

  3. Ncrunch Fody ContainsTypeChecker

    I'll definitely try compatibility mode on Monday. Weird thing is that it seems to work on "Resynchronize, rebuild and run all tests", but then as soon as any change triggers a rebuild it seem to break. I thought it was just for one project, but it seems now that no other project triggered a rebu…

  4. Ncrunch Fody ContainsTypeChecker

    Hey! It seems that I'm getting an error that nobody else have had when using fody. I have a solution with multiple project using Fody, but the issue only happens for 1 project. (The same one all the time) I've added Fody.dll to the Solution configuration of files to include. Here is the st…

  5. Unit test project with only xUnit.net theories in it is not picked up

    Just hit it now. What does the progress look like?

  6. Funny Exception at nCrunch.Compiler.RemoteBuildRunner.Build

    It resolved after adding the reference. IsAlive is a class. Cheers!

  7. Funny Exception at nCrunch.Compiler.RemoteBuildRunner.Build

    Given the interface public interface IProxy { Task<IsAlive> IsAlive(); } And this code in a [TestMethod]: var fakeProxy = new Mock<IProxy>(); fakeProxy.Setup(x => x.IsAlive()).Throws(new Exception()); This exception happens: System.NotImplementedExcepti…

  8. Specific red/green markers when a test is selected

    Ha! That was very close to what I was looking after, thanks for pointing it out! Maybe it shouldn't be hidden under the advanced, for me it's basic behaviour, maybe implementation was advanced, but it definitely deserve more visibility. Thanks again, love your product!

  9. Specific red/green markers when a test is selected

    When selecting test/s in the "NCunch Tests" window, it would be very helpful if the red and green markers near the line numbers showed some extra indication if the line is related to the selected test.

  10. Incorrect "Assemblies are being referenced from the build output"

    The following assembly references have triggered this warning: My:\path\bin\Debug\FakeItEasy.dll <Reference Include="FakeItEasy, Version=1.7.4626.65, Culture=neutral, PublicKeyToken=eff28e2146d5fd2c, processorArchitecture=MSIL"> <SpecificVersion>False</SpecificVersion> <Hint…

  11. Bug with System.Random

    Hello! Just stumbled unto a bug I think. the following code fails in ncrunch public class Class1 { public int Random { get; set; } public Class1() { Generate(); } public void Generate() { var genera…

  12. Path.GetFullPath not returning consistently with MsTest or resharper test runners

    Sure I can share the solution, it's just one of my hobby projects. Let me know how to reach you.

  13. Path.GetFullPath not returning consistently with MsTest or resharper test runners

    The test passed

  14. Path.GetFullPath not returning consistently with MsTest or resharper test runners

    Hello! Tried using the BaseDirectory and it gave the same error but on a different path, am I doing it wroing? System.IO.DirectoryNotFoundException: Could not find a part of the path 'C:\tmp\Ncrunch temp\5428\100\TestResults\7bc775b4-3881-4c40-9bfb-6d8ba2609efe\Out\TestData'. Thanks

  15. Path.GetFullPath not returning consistently with MsTest or resharper test runners

    Thanks! Looking forward to future versions, love the software! I'll look into BaseDirectory and see if I can find a solution. Johan

  16. Path.GetFullPath not returning consistently with MsTest or resharper test runners

    Hey Remco! I'm running 1.40b on Visual Studio 2012 ultimate rc. Thanks for you quick reply! Best Regards Johan

  17. Path.GetFullPath not returning consistently with MsTest or resharper test runners

    I'm experiencing some errors with Path.GetFullPath returning different results for ncrunch (thereby failing) compared to resharper testrunner or mstest runner. Resharper Path.GetFullPath(@"TestData") "C:\\dev\\photoutil\\PhotoUtil.Tests\\bin\\Release\\TestData" string Ncrunch Path.GetFullP…

  18. Test using WebClient fail

    Oh and I'm using http://cassinidev.codeplex.com/

  19. Test using WebClient fail

    500 Internal server error

  20. Test using WebClient fail

    Works in resharper, fails in ncrunch. Is this by design? Would love to help debug this if it's supposed to work. Thanks