From 6b6ffe7373fdd95c3e91fb60b10f8f1e283c77e1 Mon Sep 17 00:00:00 2001 From: Owen Arnold <owen.arnold@stfc.ac.uk> Date: Fri, 29 Sep 2017 15:19:37 +0100 Subject: [PATCH] refs #20720. Put test class back. --- Framework/Algorithms/test/RayTracerTesterTest.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/Framework/Algorithms/test/RayTracerTesterTest.h b/Framework/Algorithms/test/RayTracerTesterTest.h index 5eb6f0bdc91..fe302365d7f 100644 --- a/Framework/Algorithms/test/RayTracerTesterTest.h +++ b/Framework/Algorithms/test/RayTracerTesterTest.h @@ -12,6 +12,18 @@ using namespace Mantid::API; // There are only performance tests here as this is not a real algorithm. // Functional tests disabled ec34e64616f34f1cf476b65f934272fdfda1212f +// Unfortunately CxxTest/CTest gets confused if no functional test is present! +// The following class does precicely nothing. +class RayTracerTesterTest : public CxxTest::TestSuite { +public: + static RayTracerTesterTest *createSuite() { + return new RayTracerTesterTest(); + } + static void destroySuite(RayTracerTesterTest *suite) { delete suite; } + void test_dummy() { + // No tests. See comments above. + } +}; class RayTracerTesterTestPerformance : public CxxTest::TestSuite { public: -- GitLab