Forum member

salfab

10 posts

Posts by salfab

  1. Support for NUnit's ISolutionBuilder and TestSuite

    [quote=Remco;4025]Thanks. Do you see any obvious symptoms when they go red? I.e. is there any exception showing in the test output? Or any information in the Processing Queue window?[/quote] Absolutely : the output windows says : This test was not executed during a planned execution run.…

  2. Support for NUnit's ISolutionBuilder and TestSuite

    No problem, it's all good enough for me, really ! i'll just go through it with trial and error, it doesn't bother me one bit. there is still one thing that might be due to the "experimental" nature of the build : at the moment, the "discovered" tests are a bit flaky : from time to time, they …

  3. Support for NUnit's ISolutionBuilder and TestSuite

    Thanks Remco, It's good, we're getting somewhere :) I didn't know the Fullname could mislead NCrunch. What I do now is : I make sure every test has a unique name by adding a Guid at the end of the FullName. i.e. : I replaced the following code : [code=csharp] internal class NUnit…

  4. Support for NUnit's ISolutionBuilder and TestSuite

    Done :)

  5. Support for NUnit's ISolutionBuilder and TestSuite

    Wow ! Thank you for your responsiveness ! The experimental build discovers all the tests generated on the fly, and succeeds and fails as expected when tests are run independently ! This is really, really good news for Testeroids, our open-source test framework. I would like to point somethi…

  6. Support for NUnit's ISolutionBuilder and TestSuite

    I'm very, very glad to hear that :) looking forward. Thank you again for the support! Fabio

  7. Support for NUnit's ISolutionBuilder and TestSuite

    done :)

  8. Support for NUnit's ISolutionBuilder and TestSuite

    Hi Remco, Thank you for the insights. Is it possible by any chance that static lookup of test might get in the way of dynamic lookup ? I populated any .Parent I could find and I still get the null reference exception, and no unit test is being discovered by the dynamic lookup. I have e…

  9. Support for NUnit's ISolutionBuilder and TestSuite

    Hi Remco, Thank you for pointing me in the right direction !! I understand addins are seldom used and add a lot of complexity. Therefore, I can imagine a complete support for those is not going to happen anytime soon. That being said, your help so far is very much appreciated. I guess f…

  10. Support for NUnit's ISolutionBuilder and TestSuite

    NUnit allows Advanced scenarios to dynamically generate tests which can be used to create Advanced tests scenarios. NUnit has a class named TestSuite to which [i]Test[/i] objects can be added, and those [i]Test[/i] objects represent a unit test to be executed by the runner. As of now, generat…