Skip to content
Snippets Groups Projects
PowerMDTest.h 1.29 KiB
Newer Older
#ifndef MANTID_MDALGORITHMS_POWERMDTEST_H_
#define MANTID_MDALGORITHMS_POWERMDTEST_H_

#include <cxxtest/TestSuite.h>
#include "MantidKernel/Timer.h"
#include "MantidKernel/System.h"

#include "MantidMDAlgorithms/PowerMD.h"
#include "MantidTestHelpers/BinaryOperationMDTestHelper.h"
#include "MantidDataObjects/MDHistoWorkspace.h"

using namespace Mantid;
using namespace Mantid::MDAlgorithms;
using namespace Mantid::API;
using Mantid::DataObjects::MDHistoWorkspace_sptr;
class PowerMDTest : public CxxTest::TestSuite {
  void test_Init() {
    TS_ASSERT_THROWS_NOTHING(alg.initialize())
    TS_ASSERT(alg.isInitialized())
  void test_histo() {
    MDHistoWorkspace_sptr out;
    out = UnaryOperationMDTestHelper::doTest("PowerMD", "histo", "out");
    TS_ASSERT_DELTA(out->getSignalAt(0), 4.0, 1e-5);
  void test_histo_with_Exponent() {
    MDHistoWorkspace_sptr out;
    out = UnaryOperationMDTestHelper::doTest("PowerMD", "histo", "out", true,
                                             "Exponent", "-3.0");
    TS_ASSERT_DELTA(out->getSignalAt(0), 1. / 8., 1e-5);
  void test_event_fails() {
    UnaryOperationMDTestHelper::doTest("PowerMD", "event", "out",
                                       false /* fails*/);
  }
};

#endif /* MANTID_MDALGORITHMS_POWERMDTEST_H_ */