show/hide this revision's text 2 added 220 characters in body; edited body; added 96 characters in body

If the interface to a piece of code changes, then I consider that more than refactoring.

The typical case for refactoring is

  • "Oh, all my unit tests run, but I think my code could be made cleaner"
  • Change code to be more readable / clearer / efficient
  • Re-run unit tests (without changing the tests) and check they still work

This means that the term refactoring is relative to the interface you are discussing. i.e you could be refactoring the code behind one interface, while more extensively changing the code of another at a lower level (maybe that distinction is what's providing the confusion between you and your colleagues here?)

show/hide this revision's text 1

If the interface to a piece of code changes, then I consider that more than refactoring.

The typical case for refactoring is

  • "Oh, all my unit tests run, but I think my code could be made cleaner"
  • Change code to be more readable / clearer / efficient
  • Re-run unit tests (without changing the tests) and check they still work