orderly/gtest/vbt_test.cpp
2020-03-31 23:52:46 +08:00

9 lines
119 B
C++

#include <gtest/gtest.h>
#include "vbt/vbt.hpp"
TEST(vbt_test, put) {
VBTree<int, int> vbt;
vbt.put(0, 0);
}