1//
2// RWLockTest.h
3//
4// Definition of the RWLockTest class.
5//
6// Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
7// and Contributors.
8//
9// SPDX-License-Identifier: BSL-1.0
10//
11
12
13#ifndef RWLockTest_INCLUDED
14#define RWLockTest_INCLUDED
15
16
17#include "Poco/Foundation.h"
18#include "Poco/CppUnit/TestCase.h"
19
20
21class RWLockTest: public CppUnit::TestCase
22{
23public:
24 RWLockTest(const std::string& name);
25 ~RWLockTest();
26
27 void testLock();
28 void testTryLock();
29
30 void setUp();
31 void tearDown();
32
33 static CppUnit::Test* suite();
34
35private:
36};
37
38
39#endif // RWLockTest_INCLUDED
40