Blog Archives

Hungarian Refactoring

When refactoring C++ Hungarian notation code base changes should look similar to the existing code base. Making changes (using TDD of course) can involve refactoring existing code into smaller functions and occasionally moving it to a new class. Hungarian notation

Posted in C++, Programming, Refactoring

Refactoring legacy code

Currently, I am working with some legacy code. There are errors and no automated tests. I made the choice that I will refactor the code and write unit tests as I will have to maintain the code for the immediate future. I

Posted in C++, Refactoring, TDD