Re: C++ testing library

2014-02-21 Thread Raphael Hertzog
Hi, On Thu, 20 Feb 2014, Jan Gloser wrote: Earlier this week I wanted to find a C++ testing library. I tried gtest and cppunit but both of them seemed way too much overkill for my needs. You can try cpputest too. You might find it better for your needs. At least I never had any feeling

C++ testing library

2014-02-20 Thread Jan Gloser
Hello people, Earlier this week I wanted to find a C++ testing library. I tried gtest and cppunit but both of them seemed way too much overkill for my needs. So I wrote this: https://github.com/renra/prehash_challenge_phasor_cpp/blob/master/simple_test.cpp Now I'm thinking. Is there some way

Re: C++ testing library

2014-02-20 Thread Mathieu Malaterre
On Thu, Feb 20, 2014 at 6:12 PM, Jan Gloser jan.renra.glo...@gmail.com wrote: Hello people, Earlier this week I wanted to find a C++ testing library. I tried gtest and cppunit but both of them seemed way too much overkill for my needs. So I wrote this: https://github.com/renra

Re: C++ testing library

2014-02-20 Thread Thibaut Paumard
Le 20/02/2014 18:12, Jan Gloser a écrit : Hello people, Earlier this week I wanted to find a C++ testing library. I tried gtest and cppunit but both of them seemed way too much overkill for my needs. So I wrote this: https://github.com/renra/prehash_challenge_phasor_cpp/blob/master

Re: C++ testing library

2014-02-20 Thread Roger Leigh
On Thu, Feb 20, 2014 at 06:12:28PM +0100, Jan Gloser wrote: Earlier this week I wanted to find a C++ testing library. I tried gtest and cppunit but both of them seemed way too much overkill for my needs. They might be overkill for your current needs, but what about future needs? As you add