Programming Languages: C++
License: GNU Library or Lesser General Public License version 2.0 (LGPLv2)
browse code,
statistics svn co https://cppunit.svn.sourceforge.net/svnroot/cppunit cppunit
Makefiles for android compilation. Makefiles are placed under <cppunit svn root>/cppunit/src/cppunit/jni. Pleaes see readme.txt for details. Compilation finished without errors, but further testing was not yet done.
2012-05-24 14:04:56 PDT by https://www.google.com/accounts
I forgot to precise the clocker plugin permit to have the execution time. Somebody knows how to have the execution time of a cpp unit testing ?.
2012-05-16 07:14:44 PDT by koni29
Hi I would like to send an argument to a test fixture/suite. At the moment, the test suites that I am running look like: [code] CppUnit::TextTestRunner runner; CPPUNIT_TEST_SUITE_REGISTRATION(TestIntersectionOfVizConeAndPolygon); CPPUNIT_TEST_SUITE_REGISTRATION(TestMessagingSystem); CppUnit::TestFactoryRegistry ®istry = CppUnit::TestFactoryRegistry::getRegistry();...
2012-05-16 06:58:24 PDT by shankerk
It looks like a bit later but I have similar problem. Have you resolved your problem somehow?.
2012-05-03 14:43:00 PDT by https://www.google.com/accounts
Hi all, I would like to integrate the clocker plugin (available into the the folder examples of the cppunit archive) into the money example(available into the the folder examples of the cppunit archive). But, I don't know how to do that. Somebody can help me? thanks in advance Nicolas.
2012-05-02 08:01:56 PDT by koni29
I've used cppunit with VS2005 in the past, but when I try to build with VS2010, I get this link error... 1>------ Build started: Project: UnitTest, Configuration: Debug Win32 ------ 1> MathUnitTestMain.cpp 1>cppunitd.lib(Exception.obj) : warning LNK4049: locally defined symbol ??1?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@XZ (public: __thiscall...
2012-04-26 13:07:57 PDT by https://me.yahoo.com/a/IGMYBgNs
@lancerkind: Good question -- I'm not sure why I didn't check in (I might not be allowed, but I have no idea). If I was the project leader, I wouldn't want people checking in until they've proven themselves. I did send a note to baptiste but never received a reply. I've made my work available at...
2012-03-30 06:29:38 PDT by erict2007
This is the 5th time I've coached teams using CPPUnit and they have trouble getting the build working on VSXXX. Usually it's too old (VS 6.0) or too new (VS 2010). Now I'm working with a team on 2010 and would like to leave them with an MFC test runner to help their adoption of TDD. If anyone can share their work with me in this area, that would be awesome! (LancerKind@yahoo.com) I'm...
2012-03-29 20:36:47 PDT by lancerkind
Hi, I'm trying to do the following: #define MACRO_TESTNAME CPPUNIT_TEST(MACRO_TESTNAME); But it doesn't work. Anyone can give some suggestion? Thanks! Bridget.
2012-03-13 11:20:02 PDT by bridgetzz
Hi, I'm trying to register CPPUNIT_TEST(MACRO_TESTNAME); where the MACRO_TESTNAME expands to my expected testname, but it fails by expanding to context.addTest( ( new CppUnit::TestCaller<TestFixtureType>( context.getTestNameFor( "MACRO_TESTNAME"), &TestFixtureType::testName, context.makeFixture() ) ) ) Could some one please give a suggestion? btw, I'm pretty sure the...
2012-03-05 17:11:46 PST by bridgetzz