Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm reading a book Microsoft .NET: Architecting Applications for the Enterprise by Dino Esposito.

In chapter 3 it talks about Unit testing and says "You start by grouping related tests in a text fixture. Text fixtures are just test-specific classes where methods typically represent tests to run."

It mentions text fixtures over and over again, so it can't be a typo.

Does the book mean "test fixtures"? Or are these two separate things?

share|improve this question
By the way, after 4 paragraphs of "text fixture", they suddenly start saying "test fixture". Confusing at best! – Richard DesLonde Sep 6 '11 at 7:50

5 Answers

up vote 5 down vote accepted

It's definitely an error we made in the book, and three people couldn't catch it!

share|improve this answer
Thanks Dino. I absolutely love the book and it is really helping me a lot. I have a lot of respect for you and the book, so any time I see something that I'm not sure about I have to find out! Thanks for taking the time to come on here and set the record straight! :-) – Richard DesLonde Sep 6 '11 at 22:38
By the way my guess is that it is the fault of spell-checker or a non-technical editor changing it from test fixture to text fixture! – Richard DesLonde Sep 6 '11 at 22:38

I would say it can't be anything else but a typo and should read "test fixture".

I'm sure this Good C# Unit testing book SO question will get you a good book to read.

share|improve this answer
I would think so too but it goes on for several paragraphs. My only guess is that the tranlation from Italian didn't pick this up and the editors didn't either (since they probably were not technical). – Richard DesLonde Sep 5 '11 at 21:28
That the curse of translations... being community translations done by people with poor english skills for people with even poorer skills :( or translations done by natives but who don't know anything whatsoever about the subject :( – Gregory Pakosz Sep 5 '11 at 21:30

Test fixture is the only one that I ever heard of.
"Test fixture" must be a typo.

share|improve this answer

It is a typo. I am always catching myself writing Text when I mean Test. I guess Dino has the same affliction.

share|improve this answer

If it's a typo, then it is a weird case of collective mistyping/auto complete errors ever. Google comes back with loads of hits. It's certainly referring to the same thing though so either way i think that answers the same question. I would say "text fixture" is incorrect though even if it used deliberately.

share|improve this answer
Yeah it is really wierd. – Richard DesLonde Sep 6 '11 at 7:47
I think the mistranslation idea seems most likely – Ben Robinson Sep 6 '11 at 9:01

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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