aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/FlattenableNameToFactory.cpp
blob: d082504800ff7092c6d478320abeef08233fad14 (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
/*
 * Copyright 2018 Google Inc.
 *
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */

#include "SkFlattenable.h"
#include "Test.h"

DEF_TEST(FlattenableNameToFactory, r) {
    if (!SkFlattenable::NameToFactory("SkImageShader")) {
        ERRORF(r, "SkFlattenable::NameToFactory() fails with SkImageShader.");
    }
    if (SkFlattenable::NameToFactory("AAA-non-existent")) {
        ERRORF(r, "SkFlattenable::NameToFactory() succeeds with AAA-non-existent.");
    }
    if (SkFlattenable::NameToFactory("SkNonExistent")) {
        ERRORF(r, "SkFlattenable::NameToFactory() succeeds with SkNonExistent");
    }
    if (SkFlattenable::NameToFactory("ZZZ-non-existent")) {
        ERRORF(r, "SkFlattenable::NameToFactory() succeeds with ZZZ-non-existent.");
    }
}