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

#include "SkRTConf.h"
#include "SkOSEnvironment.h"
#include "Test.h"

// Friended proxy for SkRTConfRegistry::parse()
template <typename T>
bool test_rt_conf_parse(SkRTConfRegistry* reg, const char* key, T* value) {
    return reg->parse(key, value);
}

DEF_TEST(SkRTConfRegistry, reporter) {
    SkRTConfRegistry reg;

    sk_setenv("skia_nonexistent_item", "132");
    int result = 0;
    test_rt_conf_parse(&reg, "nonexistent.item", &result);
    REPORTER_ASSERT(reporter, result == 132);
}