ddnet/src/test/sorted_array.cpp
2021-05-06 15:39:34 +02:00

10 lines
138 B
C++

#include <gtest/gtest.h>
#include <base/tl/sorted_array.h>
TEST(SortedArray, SortEmptyRange)
{
sorted_array<int> x;
x.sort_range();
}