vote up 9 vote down star
4

I came across the word 'The Turkey Test' while learning about code testing. I don't know really what it means.

What is Turkey Test? Why is it called so?

flag

I think the best explanation of the Turkey Test is not Jeff's post itself, but the first two comments under the post: codinghorror.com/blog/archives/… – Can Berk Güder Apr 28 at 10:27

6 Answers

vote up 5 vote down check

It's related to internationalization.

In different countries there are different standards of writing i.e. dates (14.04.2008 in Turkey and 4/14/2008 in US) and numbers.

I have no idea why the problem has been called Turkey problem, because in Poland and many other European countries dates and numbers are also written with different manners.

Links from Google search for Turkey Problem with details are already given:

link|flag
1  
I called it "The Turkey Test" because a user in Turkey was the first to find a bug in our code that was triggered by a ToUpper() error that I described in the post. – Jeff Moser Apr 28 at 13:36
"I have no idea why the problem has been called Turkey problem, because in Poland and many other European countries dates and numbers are also written with different manners." It is mostly about uppercase/lowercase of the 'İ' letter. For example, Microsoft Service Trace Viewer tool is suffering from this problem. When you want to open a log file under Inetpub folder, what you get is an error message saying "'c:\ınetpub\...' cannot be opened" – idursun Aug 18 at 13:36
vote up 6 vote down

Here is described the turkey test

http://www.moserware.com/2008/02/does-your-code-pass-turkey-test.html

link|flag
vote up 0 vote down

Google gave me this blog article about turkey test.

link|flag
vote up 1 vote down

The link provided by @Luixv gives a comprehensive description of the issue.

The summary is that if your going to test your code on only one non-English locale, test it on Turkish.

This is because the Turkish has instances of most edge cases you are likely to encounter with localization, including "unusual" format strings and non-standard characters (such as a different capitalization rules for i).

link|flag
vote up 0 vote down

Jeff Atwood has a blog article on same which is the first place I came across it myself. in summary attempting to run your application under a Turkish Locale is an excellent test of your I18n.

here's jeffs article

link|flag
vote up 2 vote down

The so called "Turkey Test" is related to Software internationalization. One problem of globalization/internationalization are that date and time formats in diffrent cultures can differ on many levels (day/month/year order, date separator etc).

Also, Turkey has some special rules for capitalization, which can lead to problems. For example, the Turkish "i" character is a common problem for many programs which capitalize it in a wrong way.

link|flag

Your Answer

Get an OpenID
or

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