Skip to content
Snippets Groups Projects
Commit 6989b274 authored by Pospelov, Gennady's avatar Pospelov, Gennady
Browse files

Placeholder for new functional test to check GUI project save/load.

parent ee66be1c
No related branches found
No related tags found
No related merge requests found
...@@ -16,6 +16,7 @@ set(test_cases ...@@ -16,6 +16,7 @@ set(test_cases
RotationTranslation RotationTranslation
RoughnessTranslation RoughnessTranslation
TwoLayerRoughnessTranslation TwoLayerRoughnessTranslation
SaveLoadProject
# GUIPerformanceTest # too heavy, call manually when necessary # GUIPerformanceTest # too heavy, call manually when necessary
) )
......
// ************************************************************************** //
//
// BornAgain: simulate and fit scattering at grazing incidence
//
//! @file Tests/Functional/GUI/GUIPerformanceTest/GUISaveLoadProject.cpp
//! @brief Implements GUISaveLoadProject test.
//!
//! @homepage http://www.bornagainproject.org
//! @license GNU General Public License v3 or higher (see COPYING)
//! @copyright Forschungszentrum Jülich GmbH 2016
//! @authors Scientific Computing Group at MLZ Garching
//! @authors Céline Durniak, Marina Ganeva, David Li, Gennady Pospelov
//! @authors Walter Van Herck, Joachim Wuttke
//
// ************************************************************************** //
#include "GUISaveLoadProject.h"
GUISaveLoadProject::GUISaveLoadProject()
{
}
bool GUISaveLoadProject::runTest()
{
return true;
}
// ************************************************************************** //
//
// BornAgain: simulate and fit scattering at grazing incidence
//
//! @file Tests/Functional/GUI/GUIPerformanceTest/GUISaveLoadProject.h
//! @brief Defines GUISaveLoadProject test.
//!
//! @homepage http://www.bornagainproject.org
//! @license GNU General Public License v3 or higher (see COPYING)
//! @copyright Forschungszentrum Jülich GmbH 2016
//! @authors Scientific Computing Group at MLZ Garching
//! @authors Céline Durniak, Marina Ganeva, David Li, Gennady Pospelov
//! @authors Walter Van Herck, Joachim Wuttke
//
// ************************************************************************** //
#ifndef GUISAVELOADPROJECT_H
#define GUISAVELOADPROJECT_H
#include "IFunctionalTest.h"
#include <QString>
#include <memory>
class ApplicationModels;
//! Functional test to check persistency of application models after save/load.
class GUISaveLoadProject : public IFunctionalTest
{
public:
GUISaveLoadProject();
protected:
bool runTest();
};
#endif // GUISAVELOADPROJECT_H
...@@ -16,6 +16,7 @@ ...@@ -16,6 +16,7 @@
#include "GUISpecialTestFactory.h" #include "GUISpecialTestFactory.h"
#include "TranslationCases.h" #include "TranslationCases.h"
#include "GUIPerformanceTest.h" #include "GUIPerformanceTest.h"
#include "GUISaveLoadProject.h"
GUISpecialTestFactory::GUISpecialTestFactory() GUISpecialTestFactory::GUISpecialTestFactory()
{ {
...@@ -83,4 +84,7 @@ GUISpecialTestFactory::GUISpecialTestFactory() ...@@ -83,4 +84,7 @@ GUISpecialTestFactory::GUISpecialTestFactory()
create_new<GUIPerformanceTest>, create_new<GUIPerformanceTest>,
"Measuring GUI performance on typical tasks."); "Measuring GUI performance on typical tasks.");
registerItem("SaveLoadProject",
create_new<GUISaveLoadProject>,
"Save/load project test");
} }
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