9 行
192 B
C++
9 行
192 B
C++
#include <catch2/catch_test_macros.hpp>
|
|
|
|
#include "csp/version.h"
|
|
|
|
TEST_CASE("version is non-empty") {
|
|
REQUIRE(csp::kVersion != nullptr);
|
|
REQUIRE(std::string(csp::kVersion).size() > 0);
|
|
}
|