Reputation: 1801
We have a huge web application that has been written in .net 1.1 and 2.0. Althought it is currently running into .net3.5 all architeture is "old" and messy. We may find business logic into ajax and java script until the data layer.
Now the managers had decided that they want to start to unit test the app.
Does anyone have an idea or knows where I find a material to start or even to decide if there is a worth to start?
Upvotes: 1
Views: 204
Reputation: 2087
This is a repeat answer from a similar question.
Typically, it is very difficult to retrofit an untested codebase to have unit tests. There will be a high degree of coupling and getting unit tests to run will be a bigger time sink than the returns you'll get. I recommend the following:
Upvotes: 1