aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/TestClassDef.h
blob: 601603353c0021c1bca794499aab507fe82dcb4a (plain)
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
45
46
47
48
49
50
51
52
53
54
55
56
57
/*
 * Copyright 2011 Google Inc.
 *
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */

/*  This file is meant to be included by .cpp files, so it can spew out a
    customized class + global definition.

    e.g.
    #include "TestClassDef.h"
    DEFINE_TESTCLASS_SHORT(MyTestFunction)

    where MyTestFunction is declared as:

    static void MyTestFunction(skiatest::Reporter* reporter) {
    }
*/

#define DEFINE_TESTCLASS_SHORT(function)                                                 \
    namespace skiatest {                                                                 \
        class function##Class : public Test {                                            \
        public:                                                                          \
            static Test* Factory(void*) { return SkNEW(function##Class); }               \
        protected:                                                                       \
            virtual void onGetName(SkString* name) SK_OVERRIDE { name->set(#function); } \
            virtual void onRun(Reporter* reporter) SK_OVERRIDE { function(reporter); }   \
        };                                                                               \
        static TestRegistry gReg_##function##Class(function##Class::Factory);            \
    }

#define DEFINE_GPUTESTCLASS(uiname, classname, function)                                \
    namespace skiatest {                                                                \
        class classname : public GpuTest {                                              \
        public:                                                                         \
            static Test* Factory(void*) { return SkNEW(classname); }                    \
        protected:                                                                      \
            virtual void onGetName(SkString* name) SK_OVERRIDE { name->set(uiname); }   \
            virtual void onRun(Reporter* reporter) SK_OVERRIDE {                        \
                function(reporter, GetGrContextFactory());                              \
            }                                                                           \
        };                                                                              \
        static TestRegistry gReg_##classname(classname::Factory);                       \
    }


// Yet shorter way to define a test.  E.g.
//
// DEF_TEST(some_test_name, r) {
//   ...
//   REPORTER_ASSERT(r, x == 15);
// }
#define DEF_TEST(name, reporter) \
    static void name(skiatest::Reporter* reporter); \
    DEFINE_TESTCLASS_SHORT(name) \
    static void name(skiatest::Reporter* reporter)