1/*
2 * Copyright (C) 2015 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 *      http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package com.android.mtp;
18
19import android.test.mock.MockResources;
20
21class TestResources extends MockResources {
22    @Override
23    public String getString(int id) throws NotFoundException {
24        switch (id) {
25            case R.string.root_name:
26                return "%1$s %2$s";
27            case R.string.error_busy_device:
28                return "error_busy_device";
29            case R.string.error_locked_device:
30                return "error_locked_device";
31        }
32        throw new NotFoundException();
33    }
34
35    @Override
36    public String getString(int id, Object... formatArgs) throws NotFoundException {
37        return String.format(getString(id), formatArgs);
38    }
39}
40