Thanks for the reply. I ended up going with CppTest at first. When I ran into problems (which were possibly not CppTest related) I switched to UnitTest++, which is the work of Noel Llopis who has evaluated many alternatives in the past (his previous favourite was CxxTest).
As suggested, the...
I'm looking for a suitable unit testing framework to use in C++ Builder, version 6 specifically, but also version 5.
I've come across TUT and CppTest. The former claims compatibility with Builder, but I haven't looked in to it. The latter I seem to recall is the venerable testing framework...
Look up the documentation on TStrings - that's what the Lines property is. Think of it as a vector - you can't just assign to the vector, you have to work with it.
Try something like this:
for(int i=0;i<14;i++)
RichEdit1->Lines->Append(RichEdit2->Lines[i])
or if you want more control over...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.