How to test Language DLLs?

Posted by EKI on Stack Overflow See other posts from Stack Overflow or by EKI
Published on 2010-12-22T15:52:47Z Indexed on 2010/12/22 15:53 UTC
Read the original article Hit count: 127

Filed under:
|
|
|

Our application offer the user to display different languages if they have the approppriate Language DLL (say German.DLL, French.DLL, even Chinese.DLL).

We have functional test to verify that those DLLs enable the right options in a Combobox and that choosing them will actually translate strings in the UI.

I would like to know options to test this translation dll's more in depth, maybe ensuring that all the characters in the selected langauge (and in the file) can be correctly displayed, or that the internal structure of the DLL is consistent, there are no strings exceeding the limits that are expected of them, etc...

Any suggestions on what to test and how to test it? Does anyone know specific problems that may arise and we should check?

Thanks in advance.

© Stack Overflow or respective owner

Related posts about testing

Related posts about dll