This isn't always (or even usually) true. Sure, the IDE will verify the compile time correctness of the code, but unit tests check for run time correctness. So if you refactor a method to add an additional parameter, unit tests will catch the null that Eclipse inserted into all method calls to make the code compile.
If you are changing the signature of a method that is part of the implementation in order to improve readability, clean up design, or remove dead code, it is refactoring. Refactoring isn't just as simple as renaming classes and methods; it often requires more significant changes than that.
Example:
/* old */
LoadWeapon(WeaponTypeEnum type);
UnloadWeapon(WeaponTypeEnum type)
LaunchWeapon(WeaponTypeEnum type);
/* new */
WeaponCommand(WeaponTypeEnum type, WeaponCommandEnum command);
Note... assume that the interface is a GUI, so changing these methods doesn't change any external interface.
Many people use unit tests as a crutch for a lack of strong typing.