<http://www.gnu.org/licenses/>
#include "tpunit.h"
#include <stdlib.h>
#include <stx/btree_multiset.h>
struct StructureTest : public tpunit::TestFixture
{
StructureTest() : tpunit::TestFixture(
TEST(StructureTest::test_insert_erase)
)
{}
struct testdata
{
unsigned int a, b;
testdata()
: a(0), b(0)
{
}
inline testdata(unsigned int _a)
: a(_a), b(0)
{
}
};
struct testcomp
{
unsigned int somevalue;
inline testcomp(unsigned int sv)
: somevalue(sv)
{
}
bool operator()(const struct testdata &a, const struct testdata &b) const
{
return a.a > b.a;
}
};
template <typename KeyType>
struct traits_nodebug : stx::btree_default_set_traits<KeyType>
{
static const bool selfverify = true;
static const bool debug = false;
static const int leafslots = 8;
static const int innerslots = 8;
};
void test_insert_erase()
{
typedef stx::btree_multiset<struct testdata, struct testcomp,
struct traits_nodebug<struct testdata> > btree_type;
btree_type bt( testcomp(42) );
srand(34234235);
for(unsigned int i = 0; i < 320; i++)
{
ASSERT(bt.size() == i);
bt.insert(rand() % 100);
ASSERT(bt.size() == i + 1);
}
srand(34234235);
for(unsigned int i = 0; i < 320; i++)
{
ASSERT(bt.size() == 320 - i);
ASSERT( bt.erase_one(rand() % 100) );
ASSERT(bt.size() == 320 - i - 1);
}
}
} __StructureTest;
inline std::ostream& operator<< (std::ostream &o, const struct StructureTest::testdata &t)
{
return o << t.a;
}