vote up 3 vote down star

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?

flag

closed as not programming related by Rob Cooper Sep 15 '08 at 14:12

6 Answers

vote up 2 vote down check

Closed: (You can re-open if required)

Excerpt:

I Don’t Know Where to Start?

  • Start afresh. Only think about writing tests when you are writing new code. This can be re-working of old code, or a completely new feature.

Create a New Project to Contain the Testing Code

You don’t want your test code to get mixed up in your production code. The point here is that we are unit testing the code, so we should only ever be accessing it by its public interfaces. Create a new project within the solution. I normally just create a console app called “Test” and save it in the main application directory.

Always Have a Single Test Project for each Unit of Output

For example, a DLL has its own test application, a simple application has its own test application. However a large application should only have a test application for the main application element (since each referenced DLL will have its own test applications elsewhere).

Don’t Put Test Cases in the Main Program.cs File

It’s real easy to dive into the Main method and start writing Debug.Assert’s everywhere, but try not to do this, it can get messy real quick. Create class files for each feature set and then define a static method that the main method can call.

There has been lots of Testing/TDD discussion, it may be worth doing a tag search rather than explicit search.

link|flag
Thanks for the Accept - Wasn't expected (most people hate me if I close!).. Hope the post helps, feel free to comment on the blog if you have any queries with the content/feedback! – Rob Cooper Sep 15 '08 at 14:22
Thanks Rob. I added the answer below spotting it was a duplicate, but couldn't retag. Everytime I saved, it would say reverted back to revision 1. Next time, I will be a little more descriptive like you were on where to look, besides the one question. – Dale Ragan Sep 15 '08 at 14:30
I added a suggestion about editing the question on UserVoice. – Dale Ragan Sep 15 '08 at 14:32
Hmm.. Thats odd. I have had no problems retagging etc.. You done the right thing raising it on UV. Thanks again. – Rob Cooper Sep 15 '08 at 14:54
vote up 4 vote down

First, get a copy of Working Effectively With Legacy Code and do what it says.

In general, though:

  • add tests as you touch code - don't try to add a harness to the whole project
  • find places where you can insert "seams" - essentially where you can remove dependencies between components - and add tests there
  • if you need to, run the code and see how it's working now and use that to model the tests - it won't ensure correct behaviour, but will tell you when behaviour changes, thus giving you confidence when you do make changes
link|flag
vote up 2 vote down

This has bee asked before. See this question for answers: How do you retrofit unit tests into a code base?

link|flag
vote up 1 vote down

Retrofitting unit tests is hard work. I'd start by setting up a code coverage tool, then just chip away a bit at a time, starting from the last part of the code I touched.

Also, make sure new tests accompany new functionality.

link|flag
vote up 1 vote down

Put your tests in a separate project from everything else, and make it dependent on your production assemblies.

Don't start trying to unit test absolutely everything: you'll get discouraged and give up. Start small. Test your new code, and build your test base up gradually. The good news is your oldest code is probably your most stable, so you can put off testing that for a while. If there are specific methods that concern you, try to isolate them as much as possible and wrap some tests around those to give you a bit of confidence.

The biggest hurdle is deciding to do it in the first place, which you've done. So kudos for that!

link|flag
vote up 1 vote down

Start with installing a CI server that runs your tests and that runs some metrics like test coverage. You'll really need that to get feedback on how you're doing and keep motivated.

Then start small. Write tests for code you need to change, don't start writing tests for code that you don't need to touch. Writing tests for untestable code is usually not worth it. So refactor code you need to change to be testable and then test it.

Big refactorings are usually a bad idea at this point. Just make sure that every time you touch a bit of code you leave it in a better state than that you found it. Introduce dependency injection and add tests. Eventually you can start using a DI framework if you like.

Try to pick up a copy of Working Effectively with Legacy Code by Michael Feathers. This book is exactly written for handling situations like yours

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.