Rename tests from cc to cpp

This commit is contained in:
2024-03-10 13:04:02 +01:00
parent d9e9356d92
commit 5cd6e3d1a5
3 changed files with 0 additions and 0 deletions

16
tests/TestPlatform.cpp Normal file
View File

@@ -0,0 +1,16 @@
#define CATCH_CONFIG_MAIN // This tells Catch to provide a main() - only do
#include <catch2/catch_test_macros.hpp>
#include <catch2/catch_approx.hpp>
#include <catch2/generators/catch_generators.hpp>
#include <vector>
#include <map>
#include <string>
#include "TestUtils.h"
#include "config.h"
TEST_CASE("Test Python Classifiers score", "[PyClassifiers]")
{
std::string version = { platform_project_version.begin(), platform_project_version.end() };
REQUIRE(version == "1.0.4");
}