I have been searching for a set of programs written in C++ (using object-oriented features), but I have not been able to find what I was looking for.
I need some programs with a certain entity (I don't want a simple exmaple program with one or two classes...). I need these programs have also a test suite defined (preferably, test cases made manually, i.e., without using a library as QTest for instance).
I know there is a free suite for the C programming language, but for C++ I can find nothing, except searching in open source code forge, but this is really though.
I already knew this possibility, thanks anyway. However, each program uses a different way to define its test suite and that is a problem to me for I would have to translate these test cases to be able to use them in my own way and this is really weary... And many programs do not even have a test suite defined (for instance, Doom3).
Any program of that kind with manual test cases written in C++?
What I want to find are some C++ programs to test some features of this language (individual programs, of course). When I say "with a certain entity" I refer to programs with some importance, either they are known by the general public or they have been used in other studies like the aforementioned for C... I don't need a simple fragment of code is what I mean.
In addition, to test those programs I would need they had a pool of sample test cases for each program. With "manually" I mean that those test cases were written in C++ and only in this language as some people use frameworks like CppUnit or GoogleTest for this purpose, to give you an example.
Maybe the Boost libraries are useful for me... I have to look at depth these libraries. By now, I have found Armadillo that is related to the Boost Basic Linear Algebra Subprograms (uBLAS) library and provides some examples of usage. Thanks for your help.
Have you asked on more academic forums about a C++ equivalent to the Seimens programs?
No, I think this is the first forum I have asked. Any suggestions?
It's me again. I've been analyzing the Boost libraries and some other libraries, but they are mostly too specific. I mean, the tests don't check a whole program, but the implementation in the library of "list" or "vector", for instance.
I would need a program with a more general purpose and a bit more simple. For instance, I have found this program, a XML parser in C++.