9 lines
119 B
C++
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);
|
|
} |