 |
C++Talk.NET C++ language newsgroups
|
| View previous topic :: View next topic |
| Author |
Message |
Alex Besogonov Guest
|
Posted: Tue Jun 21, 2005 6:36 pm Post subject: Test suite for std::string? |
|
|
Good <time-of-day>!
I'm writing my own Standard-compatible container and string library
(with some valuable additions to the standard functionality), and I'm
wondering if there is a test suite for std::string and std::vector.
Standard-compatible string contains about 100 methods, so it's a tedious
work to create test suite to cover all methods.
--
With respect,
Alex Besogonov (cyberax (AT) elewise (DOT) com)
[ See http://www.gotw.ca/resources/clcm.htm for info about ]
[ comp.lang.c++.moderated. First time posters: Do this! ]
|
|
| Back to top |
|
 |
chris jefferson Guest
|
Posted: Wed Jun 22, 2005 8:09 am Post subject: Re: Test suite for std::string? |
|
|
Alex Besogonov wrote:
| Quote: | Good <time-of-day>!
I'm writing my own Standard-compatible container and string library
(with some valuable additions to the standard functionality), and I'm
wondering if there is a test suite for std::string and std::vector.
Standard-compatible string contains about 100 methods, so it's a tedious
work to create test suite to cover all methods.
|
A very good start could be the testsuite supplied in libstdc++, gcc's
standard c++ library. Download the source and look in
libstdc++-v3/testsuite/21_strings/basic_string. It might require a small
amount of work to integrate your string in, but I've taken it to pieces
before and it's quite easy to figure out what is going on.
Chris
[ See http://www.gotw.ca/resources/clcm.htm for info about ]
[ comp.lang.c++.moderated. First time posters: Do this! ]
|
|
| Back to top |
|
 |
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
|