Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
mantidproject
mantid
Commits
de35f8ba
Commit
de35f8ba
authored
Nov 01, 2016
by
Simon Heybrock
Browse files
Re #17918. Fixed includes in tests.
parent
13c1019d
Changes
122
Hide whitespace changes
Inline
Side-by-side
Framework/API/test/DataProcessorAlgorithmTest.h
View file @
de35f8ba
...
...
@@ -4,6 +4,7 @@
#include <cxxtest/TestSuite.h>
#include "MantidKernel/Timer.h"
#include "MantidKernel/System.h"
#include "MantidAPI/AnalysisDataService.h"
#include "MantidAPI/DataProcessorAlgorithm.h"
#include "MantidTestHelpers/FakeObjects.h"
...
...
Framework/API/test/MDGeometryTest.h
View file @
de35f8ba
#ifndef MANTID_API_MDGEOMETRYTEST_H_
#define MANTID_API_MDGEOMETRYTEST_H_
#include "MantidAPI/AnalysisDataService.h"
#include "MantidAPI/MDGeometry.h"
#include "MantidGeometry/MDGeometry/MDHistoDimension.h"
#include "MantidKernel/System.h"
...
...
Framework/API/test/NotebookWriterTest.h
View file @
de35f8ba
...
...
@@ -6,6 +6,9 @@
#include "MantidAPI/NotebookBuilder.h"
#include "MantidTestHelpers/FakeObjects.h"
#include <boost/algorithm/string/classification.hpp>
#include <boost/algorithm/string/split.hpp>
using
namespace
Mantid
::
API
;
using
namespace
Mantid
::
Kernel
;
...
...
Framework/Algorithms/test/CalculateEfficiencyTest.h
View file @
de35f8ba
#ifndef CALCULATEEFFICIENCYTEST_H_
#define CALCULATEEFFICIENCYTEST_H_
#include "MantidAPI/AnalysisDataService.h"
#include "MantidAPI/Axis.h"
#include "MantidAlgorithms/CalculateEfficiency.h"
#include "MantidDataHandling/LoadSpice2D.h"
...
...
Framework/Algorithms/test/CalculateFlatBackgroundTest.h
View file @
de35f8ba
#ifndef FLATBACKGROUNDTEST_H_
#define FLATBACKGROUNDTEST_H_
#include "MantidAPI/AnalysisDataService.h"
#include "MantidAPI/Axis.h"
#include "MantidAPI/FrameworkManager.h"
#include "MantidAlgorithms/CalculateFlatBackground.h"
...
...
Framework/Algorithms/test/CalculateResolutionTest.h
View file @
de35f8ba
...
...
@@ -5,6 +5,7 @@
#include "MantidAlgorithms/CalculateResolution.h"
#include "MantidDataObjects/Workspace2D.h"
#include "MantidAPI/AnalysisDataService.h"
#include "MantidGeometry/Instrument.h"
#include "MantidGeometry/Instrument/Detector.h"
#include "MantidKernel/V3D.h"
...
...
Framework/Algorithms/test/CalculateTransmissionBeamSpreaderTest.h
View file @
de35f8ba
...
...
@@ -8,6 +8,7 @@
#include "MantidAlgorithms/CropWorkspace.h"
#include "MantidDataHandling/LoadInstrument.h"
#include "MantidDataHandling/LoadRaw3.h"
#include "MantidAPI/AnalysisDataService.h"
#include "MantidTestHelpers/SANSInstrumentCreationHelper.h"
using
namespace
Mantid
::
API
;
...
...
Framework/Algorithms/test/CalculateZscoreTest.h
View file @
de35f8ba
...
...
@@ -3,6 +3,7 @@
#include <cxxtest/TestSuite.h>
#include "MantidAPI/AnalysisDataService.h"
#include "MantidAPI/MatrixWorkspace.h"
#include "MantidAPI/WorkspaceFactory.h"
#include "MantidAlgorithms/CalculateZscore.h"
...
...
Framework/Algorithms/test/ChangeLogTimeTest.h
View file @
de35f8ba
...
...
@@ -5,6 +5,7 @@
#include "MantidAlgorithms/ChangeLogTime.h"
#include "MantidDataObjects/Workspace2D.h"
#include "MantidKernel/TimeSeriesProperty.h"
#include "MantidAPI/AnalysisDataService.h"
#include "MantidAPI/Run.h"
using
std
::
string
;
...
...
Framework/Algorithms/test/ClearMaskFlagTest.h
View file @
de35f8ba
...
...
@@ -4,6 +4,7 @@
#include <cxxtest/TestSuite.h>
#include "MantidHistogramData/LinearGenerator.h"
#include "MantidAlgorithms/ClearMaskFlag.h"
#include "MantidAPI/AnalysisDataService.h"
#include "MantidAPI/WorkspaceFactory.h"
#include "MantidDataObjects/Workspace2D.h"
#include "MantidGeometry/Instrument.h"
...
...
Framework/Algorithms/test/ConvertDiffCalTest.h
View file @
de35f8ba
...
...
@@ -3,6 +3,7 @@
#include <cxxtest/TestSuite.h>
#include "MantidAPI/AnalysisDataService.h"
#include "MantidAPI/ITableWorkspace.h"
#include "MantidAlgorithms/ConvertDiffCal.h"
#include "MantidDataObjects/OffsetsWorkspace.h"
...
...
Framework/Algorithms/test/ConvertTableToMatrixWorkspaceTest.h
View file @
de35f8ba
...
...
@@ -4,6 +4,7 @@
#include <cxxtest/TestSuite.h>
#include "MantidAlgorithms/ConvertTableToMatrixWorkspace.h"
#include "MantidAPI/AnalysisDataService.h"
#include "MantidAPI/Axis.h"
#include "MantidAPI/MatrixWorkspace.h"
#include "MantidAPI/ITableWorkspace.h"
...
...
Framework/Algorithms/test/CopySampleTest.h
View file @
de35f8ba
...
...
@@ -7,6 +7,7 @@
#include "MantidDataObjects/WorkspaceSingleValue.h"
#include "MantidKernel/Material.h"
#include "MantidKernel/NeutronAtom.h"
#include "MantidAPI/AnalysisDataService.h"
#include "MantidAPI/Sample.h"
#include "MantidGeometry/Crystal/OrientedLattice.h"
#include "MantidGeometry/Objects/ShapeFactory.h"
...
...
Framework/Algorithms/test/CorelliCrossCorrelateTest.h
View file @
de35f8ba
...
...
@@ -4,6 +4,7 @@
#include <cxxtest/TestSuite.h>
#include "MantidAlgorithms/CorelliCrossCorrelate.h"
#include "MantidAPI/AnalysisDataService.h"
#include "MantidAPI/Axis.h"
#include "MantidAPI/Run.h"
#include "MantidKernel/DateAndTime.h"
...
...
Framework/Algorithms/test/CreateFlatEventWorkspaceTest.h
View file @
de35f8ba
...
...
@@ -4,8 +4,8 @@
#include <cxxtest/TestSuite.h>
#include "MantidAlgorithms/CreateFlatEventWorkspace.h"
#include "MantidDataObjects/EventWorkspace.h"
#include "MantidAPI/AnalysisDataService.h"
using
Mantid
::
Algorithms
::
CreateFlatEventWorkspace
;
...
...
Framework/Algorithms/test/CreateGroupingWorkspaceTest.h
View file @
de35f8ba
...
...
@@ -5,6 +5,7 @@
#include "MantidDataObjects/GroupingWorkspace.h"
#include "MantidKernel/System.h"
#include "MantidKernel/Timer.h"
#include "MantidAPI/AnalysisDataService.h"
#include "MantidAPI/FrameworkManager.h"
#include <cxxtest/TestSuite.h>
...
...
Framework/Algorithms/test/CreateLogTimeCorrectionTest.h
View file @
de35f8ba
...
...
@@ -4,6 +4,7 @@
#include <cxxtest/TestSuite.h>
#include "MantidAlgorithms/CreateLogTimeCorrection.h"
#include "MantidAPI/AnalysisDataService.h"
#include "MantidAPI/TableRow.h"
#include "MantidAPI/WorkspaceFactory.h"
#include "MantidDataHandling/LoadInstrument.h"
...
...
Framework/Algorithms/test/CreateSampleWorkspaceTest.h
View file @
de35f8ba
...
...
@@ -3,6 +3,7 @@
#include <cxxtest/TestSuite.h>
#include "MantidAPI/AnalysisDataService.h"
#include "MantidAPI/FrameworkManager.h"
#include "MantidGeometry/Instrument.h"
#include "MantidGeometry/IComponent.h"
...
...
Framework/Algorithms/test/CreateTransmissionWorkspaceAutoTest.h
View file @
de35f8ba
...
...
@@ -2,10 +2,14 @@
#define MANTID_ALGORITHMS_CREATETRANSMISSIONWORKSPACEAUTOTEST_H_
#include <cxxtest/TestSuite.h>
#include "MantidAPI/AnalysisDataService.h"
#include "MantidAPI/MatrixWorkspace.h"
#include "MantidAlgorithms/CreateTransmissionWorkspaceAuto.h"
#include "MantidAPI/FrameworkManager.h"
#include "MantidAPI/AlgorithmManager.h"
#include <boost/algorithm/string/classification.hpp>
#include <boost/algorithm/string/split.hpp>
#include <boost/lexical_cast.hpp>
using
Mantid
::
Algorithms
::
CreateTransmissionWorkspaceAuto
;
...
...
Framework/Algorithms/test/DiffractionFocussingTest.h
View file @
de35f8ba
...
...
@@ -4,6 +4,7 @@
#include <cxxtest/TestSuite.h>
#include "MantidAlgorithms/DiffractionFocussing.h"
#include "MantidAPI/AnalysisDataService.h"
#include "MantidAPI/MatrixWorkspace.h"
#include "MantidDataHandling/LoadNexus.h"
...
...
Prev
1
2
3
4
5
…
7
Next
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment