5
votes
Business logic invading UI in a large winforms app
You need to rearchitect the Business Layer and then wire the UI back into this rearchitectured layer.
You keep the existing UI and hardwired business logic going while this is done and switch …
1
vote
How do I avoid duplicated code in my tests and avoid mocking on self?
Unit testing works better with some form of dependency injection. In this case because you are creating the Client in the code you create a dependency in your test that requires some form of dynam …
0
votes
How do I manage deployment item references that may either be on an x86 install, or x64 install for an MSTest-based project?
We handle this sort of issue (our issues are not the same but are similar) by having different config files with different names and copying the correct one over when it is needed.
In some …
5
votes
C# “internal” access modifier when doing unit testing
In theory you should only need to test your public methods anyway. Just have enough tests that you are testing all the code paths. In reality you may want to verify something works as expected be …
0
votes
How to make an existing public API testable for external programmers using it?
Third party users should not be testing your API. They would want to test their code against your API and so they need to create Mocks of the API etc. but they would be relying on your testing of …
