| * Copyright 2013 Google Inc. |
| * Use of this source code is governed by a BSD-style license that can be |
| * found in the LICENSE file. |
| // Friended proxy for SkRTConfRegistry::parse() |
| bool test_rt_conf_parse(SkRTConfRegistry* reg, const char* key, T* value) { |
| return reg->parse(key, value); |
| static void portable_setenv(const char* key, const char* value) { |
| #ifdef SK_BUILD_FOR_WIN32 |
| DEF_TEST(SkRTConfRegistry, reporter) { |
| portable_setenv("skia_nonexistent_item", "132"); |
| test_rt_conf_parse(®, "nonexistent.item", &result); |
| REPORTER_ASSERT(reporter, result == 132); |