Skip to content
Snippets Groups Projects
Commit 6b6ffe73 authored by Owen Arnold's avatar Owen Arnold
Browse files

refs #20720. Put test class back.

parent 56967c6b
No related branches found
No related tags found
No related merge requests found
...@@ -12,6 +12,18 @@ using namespace Mantid::API; ...@@ -12,6 +12,18 @@ using namespace Mantid::API;
// There are only performance tests here as this is not a real algorithm. // There are only performance tests here as this is not a real algorithm.
// Functional tests disabled ec34e64616f34f1cf476b65f934272fdfda1212f // 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 { class RayTracerTesterTestPerformance : public CxxTest::TestSuite {
public: public:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment