add a natural sort algorithm

This commit is contained in:
Robin Gareus 2016-07-14 16:52:19 +02:00
parent 1970a8d4de
commit 311a5f1462
4 changed files with 103 additions and 0 deletions

View file

@ -0,0 +1,15 @@
#include <cppunit/TestFixture.h>
#include <cppunit/extensions/HelperMacros.h>
class NatSortTest : public CppUnit::TestFixture
{
CPPUNIT_TEST_SUITE (NatSortTest);
CPPUNIT_TEST (testBasic);
CPPUNIT_TEST_SUITE_END ();
public:
NatSortTest () { }
void testBasic ();
private:
};