Skip to content
Snippets Groups Projects
Commit af2ca294 authored by Wuttke, Joachim's avatar Wuttke, Joachim
Browse files

rename PyCoreTest -> PyExportTest to leave room to other tests of Python Core wrapper

parent bb24be6c
No related branches found
No related tags found
No related merge requests found
......@@ -59,9 +59,9 @@ include_directories(
${CMAKE_CURRENT_SOURCE_DIR}/../../TestMachinery
)
add_executable(PyCoreStandardTest PyCoreStandardTest.cpp PyCoreTest.h PyCoreTest.cpp)
target_link_libraries(PyCoreStandardTest BornAgainCore BornAgainTestMachinery)
add_executable(PyExportStandardTest PyExportStandardTest.cpp PyExportTest.h PyExportTest.cpp)
target_link_libraries(PyExportStandardTest BornAgainCore BornAgainTestMachinery)
foreach(test_case ${test_cases})
add_test(PyCoreStandardTest/${test_case}
${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/PyCoreStandardTest ${test_case})
add_test(PyExportStandardTest/${test_case}
${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/PyExportStandardTest ${test_case})
endforeach()
......@@ -2,8 +2,8 @@
//
// BornAgain: simulate and fit scattering at grazing incidence
//
//! @file Tests/Functional/PyCore/suite/PyCoreStandardTest.cpp
//! @brief Implements program PyCoreStandardTest, to run functional tests
//! @file Tests/Functional/PyCore/suite/PyExportStandardTest.cpp
//! @brief Implements program PyExportStandardTest, to run functional tests
//!
//! @homepage http://www.bornagainproject.org
//! @license GNU General Public License v3 or higher (see COPYING)
......@@ -14,19 +14,19 @@
// ************************************************************************** //
#include "IStandardTest.h"
#include "PyCoreTest.h"
#include "PyExportTest.h"
//! Provides a PyCoreTest through a callback mechanism explained in IStandardTest.h.
class PyCoreStandardTest : public IStandardTest
//! Provides a PyExportTest through a callback mechanism explained in IStandardTest.h.
class PyExportStandardTest : public IStandardTest
{
public:
PyCoreStandardTest() : IStandardTest("PySuite") {}
IFunctionalTest* getTest() const { return new PyCoreTest(
PyExportStandardTest() : IStandardTest("PySuite") {}
IFunctionalTest* getTest() const { return new PyExportTest(
getTestName(), getTestDescription(), getSimulation(), getTestThreshold()); }
};
//! Runs PyCoreTest on a standard simulation indicated by argv[1].
//! Runs PyExportTest on a standard simulation indicated by argv[1].
int main(int argc, char** argv)
{
return PyCoreStandardTest().execute(argc, argv);
return PyExportStandardTest().execute(argc, argv);
}
......@@ -2,8 +2,8 @@
//
// BornAgain: simulate and fit scattering at grazing incidence
//
//! @file Tests/Functional/PyCore/suite/PyCoreTest.cpp
//! @brief Implements class PyCoreTest
//! @file Tests/Functional/PyCore/suite/PyExportTest.cpp
//! @brief Implements class PyExportTest
//!
//! @homepage http://www.bornagainproject.org
//! @license GNU General Public License v3 or higher (see COPYING)
......@@ -13,7 +13,7 @@
//
// ************************************************************************** //
#include "PyCoreTest.h"
#include "PyExportTest.h"
#include "BAPython.h"
#include "FileSystem.h"
#include "GISASSimulation.h"
......@@ -27,7 +27,7 @@
#include <cstdlib>
#include <fstream>
PyCoreTest::PyCoreTest(
PyExportTest::PyExportTest(
const std::string& name, const std::string& description,
GISASSimulation* reference_simulation, double threshold)
: IFunctionalTest(name, description)
......@@ -40,17 +40,17 @@ PyCoreTest::PyCoreTest(
{
}
PyCoreTest::~PyCoreTest()
PyExportTest::~PyExportTest()
{
delete m_reference_simulation;
delete m_domain_simulation;
}
void PyCoreTest::runTest()
void PyExportTest::runTest()
{
// Generate Python script
std::ostringstream ostr;
ostr << "# Functional test settings, generated by PyCoreTest::runTest():\n"
ostr << "# Functional test settings, generated by PyExportTest::runTest():\n"
<< "import sys, os\n"
<< "sys.path.append('" << BUILD_LIB_DIR << "')\n\n"
<< "# Simulation script, generated by PythonFormatting::simulationToPython(..):\n"
......@@ -95,7 +95,7 @@ void PyCoreTest::runTest()
}
}
void PyCoreTest::printResults(std::ostream& ostr) const
void PyExportTest::printResults(std::ostream& ostr) const
{
ostr << getFormattedInfoString();
ostr << Utils::String::getScientificDoubleString(m_difference);
......@@ -103,7 +103,7 @@ void PyCoreTest::printResults(std::ostream& ostr) const
ostr << "--> " << getPySuiteFileNameAndPath();
}
std::string PyCoreTest::getPySuiteFileNameAndPath() const
std::string PyExportTest::getPySuiteFileNameAndPath() const
{
std::string result = Utils::FileSystem::GetJoinPath(FAILED_TESTS_DIR, m_pyscript_filename);
return result;
......
......@@ -2,8 +2,8 @@
//
// BornAgain: simulate and fit scattering at grazing incidence
//
//! @file Tests/Functional/PyCore/suite/PyCoreTest.h
//! @brief Declares class PyCoreTest
//! @file Tests/Functional/PyCore/suite/PyExportTest.h
//! @brief Declares class PyExportTest
//!
//! @homepage http://www.bornagainproject.org
//! @license GNU General Public License v3 or higher (see COPYING)
......@@ -19,18 +19,18 @@
#include "IFunctionalTest.h" // inheriting from
#include "OutputData.h"
//! @class PyCoreTest
//! @class PyExportTest
//! @ingroup standard_samples
//! @brief A functional test of PyCore (the Python wrapper of BornAgain/Core).
//! Performs a given standard simulation, both directly and from a Python dump.
//! Invoked from PyCoreStandardTest.
//! Invoked from PyExportStandardTest.
class PyCoreTest : public IFunctionalTest
class PyExportTest : public IFunctionalTest
{
public:
PyCoreTest(const std::string& name, const std::string& description,
PyExportTest(const std::string& name, const std::string& description,
class GISASSimulation* reference_simulation, double threshold);
virtual ~PyCoreTest();
virtual ~PyExportTest();
virtual void runTest();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment