aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/TestClassDef.h
blob: ffef2a157b819e3e3e645b221207a25abf86d8ad (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

/*
 * 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("MyTest", MyTestClass, MyTestFunction)

    where MyTestFunction is declared as

        void MyTestFunction(skiatest::Reporter*)
*/

#define DEFINE_TESTCLASS(uiname, classname, function)                       \
    namespace skiatest {                                                    \
        class classname : public Test {                                     \
        public:                                                             \
            static Test* Factory(void*) { return SkNEW(classname); }        \
        protected:                                                          \
            virtual void onGetName(SkString* name) { name->set(uiname); }   \
            virtual void onRun(Reporter* reporter) { function(reporter); }  \
        };                                                                  \
        static TestRegistry gReg(classname::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) { name->set(uiname); }   \
            virtual void onRun(Reporter* reporter) {                        \
                if (fContext) {                                             \
                    function(reporter, fContext);                           \
                }                                                           \
            }                                                               \
        };                                                                  \
        static TestRegistry gReg(classname::Factory);                       \
    }