Skip to content
Snippets Groups Projects
WriteLockTest.h 1.43 KiB
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_WRITELOCKTEST_H_
#define MANTID_KERNEL_WRITELOCKTEST_H_

#include "MantidKernel/WriteLock.h"

#include "MantidKernel/DataItem.h"
#include <cxxtest/TestSuite.h>

using namespace Mantid;
using namespace Mantid::Kernel;

class MockDataItem : public DataItem {
  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"; }
  friend class WriteLockTest;

private:
  std::string m_name{"Noone"};
class WriteLockTest : public CxxTest::TestSuite {
  void test_Scoped_WriteLock() {
    MockDataItem item;
    WriteLock lock(item);
    // Can't directly check the underlying lock object as it is private...
  }

  void test_new_doesNotCompile() {
    MockDataItem item;
    // The next line does not compile, which is what we want!
    //    WriteLock * lock = new WriteLock(item);
  }
};

#endif /* MANTID_KERNEL_READLOCKTEST_H_ */