forked from AmbaPant/mantid
-
Notifications
You must be signed in to change notification settings - Fork 1
/
TearDownWorld.h
41 lines (34 loc) · 1.33 KB
/
TearDownWorld.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
// Mantid Repository : https://github.com/mantidproject/mantid
//
// Copyright © 2007 ISIS Rutherford Appleton Laboratory UKRI,
// NScD Oak Ridge National Laboratory, European Spallation Source,
// Institut Laue - Langevin & CSNS, Institute of High Energy Physics, CAS
// SPDX - License - Identifier: GPL - 3.0 +
#pragma once
#include <cxxtest/GlobalFixture.h>
// This file defines a set of CxxTest::GlobalFixture classes that
// are used to control various aspects of the global test setUp and tearDown
// process
/**
* Defines a CxxTest::GlobalFixture that clears the AlgorithmManager
* when its tearDownWorld() method is called.
*/
class ClearAlgorithmManager : public CxxTest::GlobalFixture {
bool tearDownWorld() override;
};
//-----------------------------------------------------------------------------
/**
* Defines a CxxTest::GlobalFixture that clears the AnalysisDataService
* when its tearDownWorld() method is called.
*/
class ClearADS : public CxxTest::GlobalFixture {
bool tearDownWorld() override;
};
//-----------------------------------------------------------------------------
/**
* Defines a CxxTest::GlobalFixture that clears the PropertyManagerDataService
* when its tearDownWorld() method is called.
*/
class ClearPropertyManagerDataService : public CxxTest::GlobalFixture {
bool tearDownWorld() override;
};