c# Programming Glossary: testability
Best Practices of Test Driven Development Using C# and RhinoMocks [closed] http://stackoverflow.com/questions/124210/best-practices-of-test-driven-development-using-c-sharp-and-rhinomocks have any best practices that they follow To maximize the testability of code follow these rules Write the test first then the code...
Is it bad to use servicelocation instead of constructor injection to avoid writing loads of factory classes http://stackoverflow.com/questions/1599811/is-it-bad-to-use-servicelocation-instead-of-constructor-injection-to-avoid-writi to reference the Service Locator I'm not worried about testability its easy to use a mock container as the backing service for..
Moving existing code to Test Driven Development http://stackoverflow.com/questions/167079/moving-existing-code-to-test-driven-development
What are the 'big' advantages to have Poco with ORM? http://stackoverflow.com/questions/2635953/what-are-the-big-advantages-to-have-poco-with-orm this question POCO it's all about loose coupling and testability. So when you are doing POCO you can test your Domain Model if..
Unit testing with EF4 “Code First” and Repository http://stackoverflow.com/questions/3463017/unit-testing-with-ef4-code-first-and-repository Here's an excellent article on MSDN that discusses testability of EF code. It uses IObjectSet but I think it's still relevant...
What is the best way to do unit testing for ASP.NET 2.0 web pages? [closed] http://stackoverflow.com/questions/4363/what-is-the-best-way-to-do-unit-testing-for-asp-net-2-0-web-pages . Once you've selected a framework pattern that encourages testability you need to use a unit testing tool. NUnit is a good starting..
Best Practices for IOC Container http://stackoverflow.com/questions/480286/best-practices-for-ioc-container it is using to get the work done. This improves clarity testability and degubability. Lets say Foo only needs the email service..
WPF MVVM Newbie - how should the ViewModel close the form? http://stackoverflow.com/questions/501886/wpf-mvvm-newbie-how-should-the-viewmodel-close-the-form via an interface and wired up via an IOC container so no testability or maintainability is lost. It seems rather silly that the accepted..
Should we select VB.NET or C# when upgrading our legacy applications? [closed] http://stackoverflow.com/questions/507291/should-we-select-vb-net-or-c-sharp-when-upgrading-our-legacy-applications we want to rewrite it in a way that emphasizes reusability testability and extensibility. I am therefore considering a move away from..
what is MVP-Passive View and MVP-Supervising controller http://stackoverflow.com/questions/5381847/what-is-mvp-passive-view-and-mvp-supervising-controller on how testable you want your application to be. If testability is a primary concern in your application Passive View might.. On the other hand if you prefer code simplicity over full testability Supervising Controller might be a better option because for.. the following Both variants allow you to increase the testability of your presentation logic. Passive View usually provides a..
MetadataException: Unable to load the specified metadata resource http://stackoverflow.com/questions/689355/metadataexception-unable-to-load-the-specified-metadata-resource
Sending email through Gmail SMTP server with C# http://stackoverflow.com/questions/704636/sending-email-through-gmail-smtp-server-with-c-sharp an EmailSender project at Codeplex . It's designed for testability and supports my favourite SMTP services such as GoDaddy and..
To return IQueryable<T> or not return IQueryable<T> http://stackoverflow.com/questions/718624/to-return-iqueryablet-or-not-return-iqueryablet can add paging callers can add sorting etc The cons non testability Your repository is no longer properly unit testable you can't..
mocking session variable in unit test using Moles http://stackoverflow.com/questions/8487801/mocking-session-variable-in-unit-test-using-moles test but it is the type of change that is good both for testability and for portability of the code. share improve this answer..
|