mirror of
https://github.com/holub/mame
synced 2025-04-23 00:39:36 +03:00
10 lines
176 B
C++
10 lines
176 B
C++
#include "catch.hpp"
|
|
|
|
#include "options.h"
|
|
|
|
TEST_CASE("Empty options should return size of zero", "[util]")
|
|
{
|
|
core_options options;
|
|
REQUIRE(options.entries().size() == 0);
|
|
}
|