Search Results

0
votes

Where to move the business logic when moving it out of the database

This will depend upon the object model that you've created and how you've let your caller decide which Factory will be the new Factory to process the PurchaseOrder. For example, if you gi …
0
votes

Is it good practice to throw exceptions in virtual functions?

If you would like to "protect" the callers of the base class from receiving potentially unanticipated exceptions thrown by classes derived from your base class, consider using the Template pattern …
0
votes

What is a reasonable code coverage % for unit tests (and why)?

I think that what may matter most is knowing what the coverage trend is over time and understanding the reasons for changes in the trend. Whether you view the changes in the trend as good or bad w …
0
votes

What are the Dangers of using a Singleton in a multithreaded application

There is some debate with respect to the need to make the first check for null use Thread.VolatileRead() if you use the double checked locking pattern and want it to work on all memory models. An …
6
votes

What should be on a checklist that would help someone develop good OO software?

One of the best sources would be Martin Fowler's "Refactoring" book which contains a list (and supporting detail) of object oriented code smells that you might want to consider refactoring. …