10 lines
210 B
C++
Executable File
10 lines
210 B
C++
Executable File
#include <gtest/gtest.h>
|
|
|
|
#include "range/range.hpp"
|
|
|
|
TEST(within, check)
|
|
{
|
|
ASSERT_EQ(hack::range::within(23, 123, 34, 44, 55, 66), true);
|
|
ASSERT_EQ(hack::range::within(23, 123, 134, 44, 55, 66), false);
|
|
}
|