Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#ifndef MANTID_KERNEL_READLOCKTEST_H_
#define MANTID_KERNEL_READLOCKTEST_H_
#include <cxxtest/TestSuite.h>
#include "MantidKernel/Timer.h"
#include "MantidKernel/System.h"
#include <iostream>
#include <iomanip>
#include "MantidKernel/ReadLock.h"
using namespace Mantid;
using namespace Mantid::Kernel;
//class MockDataItem : public DataItem
//{
//public:
// virtual const std::string id() const { return "MockDataItem"; }
// /// The name of the object
// virtual const std::string name() const{ return "Noone"; }
// /// Can this object be accessed from multiple threads safely
// virtual bool threadSafe() const { return true; }
// /// Serializes the object to a string
// virtual std::string toString() const { return "Nothing"; }
//
// Poco::RWLock * getLock()
// { return m_lock; }
//};
class ReadLockTest : public CxxTest::TestSuite
{
public:
void test_Something()
{
}
};
#endif /* MANTID_KERNEL_READLOCKTEST_H_ */