Tagged Questions

5
votes
2answers
405 views

Understanding the Open Closed Principle

I was refactoring some old code of a simple script file parser when I came across the following code: StringReader reader = new StringReader(scriptTextToProcess); StringBuilder scope = new ...
-2
votes
8answers
206 views

If I have a full unit test suite for an application, must I still apply the Open/Closed Principle (OCP)?

The Wikipedia article on OCP says (emphasis mine): ... the open/closed principle states "software entities (classes, modules, functions, etc.) should be open for extension, but closed for ...