69e7cd3db46e26cfc4c0b48cc0f12a192e2c3b8e
[test/generic/wayland-fits.git] / src / test / core / harness.h
1 /*
2  * Copyright © 2013 Intel Corporation
3  *
4  * Permission to use, copy, modify, distribute, and sell this software and
5  * its documentation for any purpose is hereby granted without fee, provided
6  * that the above copyright notice appear in all copies and that both that
7  * copyright notice and this permission notice appear in supporting
8  * documentation, and that the name of the copyright holders not be used in
9  * advertising or publicity pertaining to distribution of the software
10  * without specific, written prior permission.  The copyright holders make
11  * no representations about the suitability of this software for any
12  * purpose.  It is provided "as is" without express or implied warranty.
13  *
14  * THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS
15  * SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
16  * FITNESS, IN NO EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY
17  * SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER
18  * RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF
19  * CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
20  * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
21  */
22
23 #ifndef __WFITS_CORE_HARNESS_H__
24 #define __WFITS_CORE_HARNESS_H__
25
26 #include "test/harness.h"
27 #include "display.h"
28
29 class CoreTestHarness : public ::wfits::test::TestHarness
30 {
31 public:
32         CoreTestHarness();
33
34         virtual ~CoreTestHarness();
35         
36         void queueStep(TestStep);
37
38         const Display& display() const { return display_; }
39
40         /*virtual*/ void yield(const unsigned = 0.001 * 1e6) const;
41         /*virtual*/ const ::wfits::test::Client& client() const;
42
43 private:
44         void runStep(TestStep step) const;
45
46         Display display_;
47 };
48
49 #define WFITS_CORE_HARNESS_TEST_CASE(HarnessClass, suite) \
50         HARNESS_TEST(HarnessClass, "Core/" suite)
51
52 #endif