Re: [Cppunit-devel] C++ test cases generator
Brought to you by:
blep
From: FUKUDA F. <ff...@nt...> - 2002-11-07 05:04:33
|
Hi, --- "[Cppunit-devel] C++ test cases generator" / Guillaume Puthod --- >We are looking for tools on Unix and/or Windows that can generate test >cases for C++ code. > >Would you be kind enough to send me any references/ideas you have on >this subject ? 'doxygen' can genarate XML that contains function-signatures from the input C++ source. and, our project 'cuppa' made test-skeleton-genarator 'curie' that genarates test-skeleton from the XML. for example, a source: class Foo { public: void one(); void two(); }; doxygen + curie can genarate: class FooTest : public CppUnit::TestFixture { ... void test_one(); void test_two(); }; # project 'cuppa' : http://sourceforge.jp/projects/cuppa/ # SORRY, all of it's materials are in Japanese :-( -----:-----:-----:-----:-----:-----:-----:-----:-----:----- FUKUDA (episteme) Fumiki -- magical, but never a magic... |