Newer
Older
// 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
// SPDX - License - Identifier: GPL - 3.0 +
#ifndef MANTID_KERNEL_READLOCKTEST_H_
#define MANTID_KERNEL_READLOCKTEST_H_
#include "MantidKernel/ReadLock.h"
#include "MantidKernel/DataItem.h"
#include <cxxtest/TestSuite.h>
using namespace Mantid;
using namespace Mantid::Kernel;
class MockDataItem : public DataItem {
public:
const std::string id() const override { return "MockDataItem"; }
/// The name of the object
const std::string &getName() const override { return m_name; }
/// Can this object be accessed from multiple threads safely
bool threadSafe() const override { return true; }
/// Serializes the object to a string
const std::string toString() const override { return "Nothing"; }
private:
std::string m_name{"Noone"};
class ReadLockTest : public CxxTest::TestSuite {
MockDataItem item;
ReadLock lock(item);
// Can't directly check the underlying lock object as it is private...
MockDataItem item;
// The next line does not compile, which is what we want!
// ReadLock * lock = new ReadLock(item);
};
#endif /* MANTID_KERNEL_READLOCKTEST_H_ */