Forum member

Henrry

18 posts

Posts by Henrry

  1. fail to compile

    The second options worked thanks

  2. fail to compile

    Hi my project has this in the csproj file <Error Condition="!Exists('..\..\..\packages\Microsoft.Net.Compilers.1.0.0\build\Microsoft.Net.Compilers.props')" Text="$([System.String]::Format('$(ErrorText)', '..\..\..\packages\Microsoft.Net.Compilers.1.0.0\build\Microsoft.Net.Compilers.props'))" /…

  3. doen't run test with TestCaseSource

    [TestFixture] public class JobResolutionStatusStepForwardTests { [Test] [TestCaseSource(typeof(JobResolutionStatusTestsSource), nameof(JobResolutionStatusTestsSource.StepForward))] [Category("JobResolutionStatus StepForward")] public ResolutionStatus…

  4. doen't run test with TestCaseSource

    Interesting...I have another test that is doing something very similar and it is working fine [Test] [TestCaseSource(typeof(JobResolutionStatusTestsSource), nameof(JobResolutionStatusTestsSource.StepForward))] public ResolutionStatus JobResolutionStatusStepForward(Job job, IUserThresholdService…

  5. doen't run test with TestCaseSource

    if it was an open source software I would say "Can I give a hand?"

  6. doen't run test with TestCaseSource

    Funny coincidences :) According to what you say is not NCrunch fault but it would be great having it working. Any way NCrunch still is a really great tool

  7. doen't run test with TestCaseSource

    Well i guess you can't fix what has no solution :( thanks anyway

  8. doen't run test with TestCaseSource

    Thanks for the suggestion Are you aware of any plans in the future to fix this problem?

  9. doen't run test with TestCaseSource

    That looks like a hack. The entities are equal (that is what i am testing...kind of) so the ToString method should return the same value. Even more, I create a tostring method like this public override string ToString() { DateTime.Now.Ticks.ToString(); } I am am still facing the sam…

  10. doen't run test with TestCaseSource

    Hello I have a test like this [Test] [TestCaseSource(typeof(LineItemActionTestsSource), "TestCases")] public bool Should_HasChanges(LineItemAction testValue) { var sut = <<create and fill instance>> return sut.HasChanges(testValue); } my test cases yield a complex type of L…

  11. nunit TestCase not working with ExpectedResult

    Thanks Remco It works fine

  12. nunit TestCase not working with ExpectedResult

    Hi Remco Sorry for the delay. I just sent via the contact form as requested a demo project Kind regards Henrry

  13. nunit TestCase not working with ExpectedResult

    Sure Remco I will do it Kind regards Henrry Pires

  14. nunit TestCase not working with ExpectedResult

    Hi Remco this is the nuget package that i have installed ...packages\NUnit.3.2.0\lib\net45\nunit.framework.dll kind regards Henrry

  15. nunit TestCase not working with ExpectedResult

    Event without the test attribute it fails thanks for your suggestion anyway

  16. nunit TestCase not working with ExpectedResult

    Hi I have this test [Test] [TestCase(null, ExpectedResult = JobStatus.DocumentDelivery)] [TestCase("9999999999999999", ExpectedResult = JobStatus.InComplete)] public JobStatus SetJobSetIncompleteStatus(string invoiceNumber) { …

  17. Missing (non used) nuget package

    That project that you suggest me to look at is working fine. It doesn't ask for anything else, as it should. But i manage to get it working. By manually adding the files it started to compile. But it is weird, NCrunch should not be asking for this extra files. Thanks for your suggestion

  18. Missing (non used) nuget package

    Hi NCrunch is failing to build because a nuget package that i am not using. I don't have it in my project Here is the error message NCrunch: If you are experiencing problems in getting this project to build, have a look at http://www.ncrunch.net/documentation/troubleshooting_project-build-is…