16 lines
235 B
C++
16 lines
235 B
C++
|
|
#include "Tree.hpp"
|
|
#include "Timing.hpp"
|
|
#include "UnitTest++/UnitTest++.h"
|
|
|
|
#include <map>
|
|
|
|
TEST(AVLTreeStream) {
|
|
tp::Timer timer(1000);
|
|
|
|
tp::AvlTree<tp::AvlNumericKey<tp::ualni>> tree;
|
|
|
|
while (!timer.isTimeout()) {
|
|
tree.
|
|
}
|
|
}
|