2018-01-18 20:35:11 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2018 Google Inc.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
|
|
|
*/
|
|
|
|
|
2019-04-23 17:05:21 +00:00
|
|
|
#include "include/core/SkFlattenable.h"
|
|
|
|
#include "tests/Test.h"
|
2018-01-18 20:35:11 +00:00
|
|
|
|
|
|
|
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.");
|
|
|
|
}
|
|
|
|
}
|