blob: 6c4dafc9725cd8057812f5161df707a35ee4b7e3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
#include "catch.hpp"
#include "options.h"
TEST_CASE("Empty options should return size of zero", "[util]")
{
core_options options;
REQUIRE(options.entries().size() == 0);
}
|