ddnet/src/test/sorted_array.cpp

10 lines
138 B
C++
Raw Normal View History

2021-05-06 13:39:34 +00:00
#include <gtest/gtest.h>
#include <base/tl/sorted_array.h>
TEST(SortedArray, SortEmptyRange)
{
sorted_array<int> x;
x.sort_range();
}