From da985e55c107b7d42cca1cd73c8599bb8d4e93e0 Mon Sep 17 00:00:00 2001 From: Pete Peterson Date: Tue, 17 Dec 2024 21:45:57 -0500 Subject: [PATCH] Remove empty unit tests --- Framework/API/CMakeLists.txt | 1 - Framework/API/test/IEventListTest.h | 19 ------------------ Framework/Kernel/CMakeLists.txt | 2 -- Framework/Kernel/test/IPropertySettingsTest.h | 19 ------------------ Framework/Kernel/test/ISaveableTest.h | 20 ------------------- 5 files changed, 61 deletions(-) delete mode 100644 Framework/API/test/IEventListTest.h delete mode 100644 Framework/Kernel/test/IPropertySettingsTest.h delete mode 100644 Framework/Kernel/test/ISaveableTest.h diff --git a/Framework/API/CMakeLists.txt b/Framework/API/CMakeLists.txt index 2f24e1e8e162..a5004e5f6e3d 100644 --- a/Framework/API/CMakeLists.txt +++ b/Framework/API/CMakeLists.txt @@ -411,7 +411,6 @@ set(TEST_FILES HistogramValidatorTest.h HistoryItemTest.h HistoryViewTest.h - IEventListTest.h IFunction1DSpectrumTest.h IFunction1DTest.h IFunctionMDTest.h diff --git a/Framework/API/test/IEventListTest.h b/Framework/API/test/IEventListTest.h deleted file mode 100644 index 37d4bb4d3cbe..000000000000 --- a/Framework/API/test/IEventListTest.h +++ /dev/null @@ -1,19 +0,0 @@ -// Mantid Repository : https://github.com/mantidproject/mantid -// -// Copyright © 2018 ISIS Rutherford Appleton Laboratory UKRI, -// NScD Oak Ridge National Laboratory, European Spallation Source, -// Institut Laue - Langevin & CSNS, Institute of High Energy Physics, CAS -// SPDX - License - Identifier: GPL - 3.0 + -#pragma once - -#include "MantidKernel/Timer.h" -#include - -#include "MantidAPI/IEventList.h" - -using namespace Mantid::API; - -class IEventListTest : public CxxTest::TestSuite { -public: - void test_Something() {} -}; diff --git a/Framework/Kernel/CMakeLists.txt b/Framework/Kernel/CMakeLists.txt index 8791c80a219c..b9f0878956d8 100644 --- a/Framework/Kernel/CMakeLists.txt +++ b/Framework/Kernel/CMakeLists.txt @@ -353,8 +353,6 @@ set(TEST_FILES FreeBlockTest.h FunctionTaskTest.h GlobTest.h - IPropertySettingsTest.h - ISaveableTest.h IValidatorTest.h IndexSetTest.h InstrumentInfoTest.h diff --git a/Framework/Kernel/test/IPropertySettingsTest.h b/Framework/Kernel/test/IPropertySettingsTest.h deleted file mode 100644 index 72c1a5c302af..000000000000 --- a/Framework/Kernel/test/IPropertySettingsTest.h +++ /dev/null @@ -1,19 +0,0 @@ -// Mantid Repository : https://github.com/mantidproject/mantid -// -// Copyright © 2018 ISIS Rutherford Appleton Laboratory UKRI, -// NScD Oak Ridge National Laboratory, European Spallation Source, -// Institut Laue - Langevin & CSNS, Institute of High Energy Physics, CAS -// SPDX - License - Identifier: GPL - 3.0 + -#pragma once - -#include "MantidKernel/IPropertySettings.h" -#include "MantidKernel/Timer.h" -#include - -using namespace Mantid; -using namespace Mantid::Kernel; - -class IPropertySettingsTest : public CxxTest::TestSuite { -public: - void test_Something() {} -}; diff --git a/Framework/Kernel/test/ISaveableTest.h b/Framework/Kernel/test/ISaveableTest.h deleted file mode 100644 index 4063fbd4136d..000000000000 --- a/Framework/Kernel/test/ISaveableTest.h +++ /dev/null @@ -1,20 +0,0 @@ -// Mantid Repository : https://github.com/mantidproject/mantid -// -// Copyright © 2018 ISIS Rutherford Appleton Laboratory UKRI, -// NScD Oak Ridge National Laboratory, European Spallation Source, -// Institut Laue - Langevin & CSNS, Institute of High Energy Physics, CAS -// SPDX - License - Identifier: GPL - 3.0 + -#pragma once - -#include "MantidKernel/ISaveable.h" -#include "MantidKernel/Timer.h" -#include - -using namespace Mantid; - -class ISaveableTest : public CxxTest::TestSuite { -public: - void test_Something() { - // Bare interface, so nothing to test. - } -};