mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-31 19:07:43 +01:00
add a natural sort algorithm
This commit is contained in:
parent
1970a8d4de
commit
311a5f1462
4 changed files with 103 additions and 0 deletions
15
libs/pbd/test/natsort_test.h
Normal file
15
libs/pbd/test/natsort_test.h
Normal 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:
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue