blob: 43a995536d89e796894e4e6ac9e7aaa1bd68379a [file] [log] [blame]
Adam Lesinski7a37b742016-10-12 14:05:55 -07001/*
2 * Copyright (C) 2016 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
Adam Lesinski873ef0e2017-10-11 16:50:37 -070017#ifndef ANDROIDFW_TEST_TESTHELPERS_H
18#define ANDROIDFW_TEST_TESTHELPERS_H
Adam Lesinski7a37b742016-10-12 14:05:55 -070019
Adam Lesinski7a37b742016-10-12 14:05:55 -070020#include <string>
21
Adam Lesinskiea789792016-11-10 14:33:11 -080022#include "androidfw/ResourceTypes.h"
23#include "gtest/gtest.h"
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -070024
Adam Lesinski873ef0e2017-10-11 16:50:37 -070025#include "CommonHelpers.h"
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -070026
Adam Lesinski31245b42014-08-22 19:10:56 -070027namespace android {
28
Adam Lesinski4c67a472016-11-10 16:43:59 -080029::testing::AssertionResult ReadFileFromZipToString(const std::string& zip_path,
30 const std::string& file,
31 std::string* out_contents);
32
Adam Lesinski4c67a472016-11-10 16:43:59 -080033::testing::AssertionResult IsStringEqual(const ResTable& table, uint32_t resource_id,
Adam Lesinski7a37b742016-10-12 14:05:55 -070034 const char* expected_str);
Adam Lesinski60293192014-10-21 18:36:42 -070035
Adam Lesinski7a37b742016-10-12 14:05:55 -070036} // namespace android
Adam Lesinski31245b42014-08-22 19:10:56 -070037
Adam Lesinski873ef0e2017-10-11 16:50:37 -070038#endif // ANDROIDFW_TEST_TESTHELPERS_H