Newer
Older
Steve Williams
committed
#ifndef ADDSAMPLELOGTEST_H_
#define ADDSAMPLELOGTEST_H_
#include <cxxtest/TestSuite.h>
#include <string>
#include "WorkspaceCreationHelper.hh"
#include "MantidAPI/MatrixWorkspace.h"
Steve Williams
committed
#include "MantidAlgorithms/AddSampleLog.h"
using namespace Mantid::Kernel;
using namespace Mantid::API;
using namespace Mantid::Algorithms;
class AddSampleLogTest : public CxxTest::TestSuite
{
public:
Steve Williams
committed
{
ExecuteAlgorithm(WorkspaceCreationHelper::Create2DWorkspace(10,10));
}
void testInsertionEvent()
{
ExecuteAlgorithm(WorkspaceCreationHelper::CreateEventWorkspace(10,10));
}
void ExecuteAlgorithm(MatrixWorkspace_sptr testWS)
{
//add the workspace to the ADS
AnalysisDataService::Instance().add("AddSampleLogTest_Temporary", testWS);
//execute algorithm
Steve Williams
committed
AddSampleLog alg;
TS_ASSERT_THROWS_NOTHING(alg.initialize());
TS_ASSERT( alg.isInitialized() )
alg.setPropertyValue("Workspace", "AddSampleLogTest_Temporary");
alg.setPropertyValue("LogName", "my name");
alg.setPropertyValue("LogText", "my data");
TS_ASSERT_THROWS_NOTHING(alg.execute())
TS_ASSERT( alg.isExecuted() )
Steve Williams
committed
MatrixWorkspace_sptr output = boost::dynamic_pointer_cast<MatrixWorkspace>(AnalysisDataService::Instance().retrieve(alg.getProperty("Workspace")));
Sample wSpaceSam = output->sample();
PropertyWithValue<std::string> *testProp =
dynamic_cast<PropertyWithValue<std::string>*>(wSpaceSam.getLogData("my name"));
TS_ASSERT(testProp)
TS_ASSERT_EQUALS(testProp->value(), "my data")
//cleanup
AnalysisDataService::Instance().remove(output->getName());
Steve Williams
committed
}
Steve Williams
committed
};
#endif /*ADDSAMPLELOGTEST_H_*/