You know developers hate going back to our code after 6 months or longer. Unit testing eases the process for sure and should be baked in from the beginning of any project.
I've just begun working on a c# & ajax web project which has never had a unit testing strategy baked in and it's becoming an issue to realistically test any code whatsoever. I'm trying to follow the advice given in Unit Testing 101 but it's a daunting process for me alone. However I know that if I don't start now it will never get done
I've got all sorts of issues such as interfaces that haven't been updated for a while and broken encapsulation which is going to make my job harder. Like everyone else I'm a little scared of refactoring such a large chunk of the code base....
Bearing in mind I'm fairly new to "advanced" unit testing concepts such as Mocks, Fakes and getting tests into the build (we currently have a build script but not full CI).
How do I ensure my tests won't break the build and end up in the realeased assemblys? How do I handle these issues without having to spend weeks refactoring and get some realistic tests as quickly as possible? Also how do I ensure my example is followed?
