Refactor to accept new Library structure
This commit is contained in:
@@ -5,8 +5,8 @@ if(ENABLE_TESTING)
|
||||
${Platform_SOURCE_DIR}/lib/argparse/include
|
||||
${Platform_SOURCE_DIR}/lib/mdlp
|
||||
${Platform_SOURCE_DIR}/lib/Files
|
||||
/usr/local/include/bayesnet
|
||||
/usr/local/include/pyclassifiers
|
||||
${CMAKE_BINARY_DIR}/configured_files/include
|
||||
/usr/local/include
|
||||
)
|
||||
set(TEST_SOURCES_PLATFORM TestUtils.cc TestPlatform.cc)
|
||||
add_executable(${TEST_PLATFORM} ${TEST_SOURCES_PLATFORM})
|
||||
|
@@ -11,6 +11,6 @@
|
||||
|
||||
TEST_CASE("Test Python Classifiers score", "[PyClassifiers]")
|
||||
{
|
||||
std::string version = { project_version.begin(), project_version.end() };
|
||||
std::string version = { platform_project_version.begin(), platform_project_version.end() };
|
||||
REQUIRE(version == "1.0.4");
|
||||
}
|
@@ -5,7 +5,7 @@ class Paths {
|
||||
public:
|
||||
static std::string datasets()
|
||||
{
|
||||
return { data_path.begin(), data_path.end() };
|
||||
return { platform_data_path.begin(), platform_data_path.end() };
|
||||
}
|
||||
};
|
||||
|
||||
|
Reference in New Issue
Block a user