#include #include TEST_CASE("Creating an empty vector") { kstd::vector v; REQUIRE(v.empty()); REQUIRE(v.size() == 0); REQUIRE(v.capacity() == 0); }