Note to the asker (to iocio): I apologize if you are already aware of
the techniques that I mention below.
I did not mean to obnoxiously "preach
to the choir." After I typed up my
response, I reread your question, and
you do seem to be experienced with
template techniques so you probably
already do something like what I
describe below. Sorry! In that case
hopefully some other reader of this
thread will be helped by this.
I applaud your desire to achieve an effective level of testing. I do believe that you should attempt to unit test generic classes as best as you can. (Unfortunately, I do not have much specific advice on that point.)
I have an additional suggestion. In addition to unit-testing each template, please examine various techniques that will help constrain the potentially vast universe of template arguments that your library users might try to pass to your templates.
For example: say that you only manage to test your templates using the type arguments "string" and "char". Say that you do not have proof that other type arguments will be problematic for this particular template, but for one reason or another you "suspect" that other untested type args will be problematic.
In a case such as the above example, you don't necessarily have a case that implies you need to exhaustively test other type args. Instead, you have a case that might imply you should simply employ some compile-time template metaprogramming techniques to ensure that your template is never used with any other arguments but "string" and "char".
I am probably not the best person to elaborate on such techniques (because I am still studying them myself), however I would strongly urge you to take a look at the following book.
Modern C++ Design -- by Andrei Alexandrescu
Very early on in this book, the author shows examples such as:
"Modern C++ Design" (despite its rather broad/vague title) is a fairly advanced exploration of template programming techniques.
