blob: df0c642f45653ff008a711e846053179517ce43b [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"
Adam Lesinski64ee69d2018-01-08 17:38:30 -080023#include "gmock/gmock.h"
Adam Lesinskiea789792016-11-10 14:33:11 -080024#include "gtest/gtest.h"
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -070025
Adam Lesinski873ef0e2017-10-11 16:50:37 -070026#include "CommonHelpers.h"
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -070027
Adam Lesinski31245b42014-08-22 19:10:56 -070028namespace android {
29
Adam Lesinski4c67a472016-11-10 16:43:59 -080030::testing::AssertionResult ReadFileFromZipToString(const std::string& zip_path,
31 const std::string& file,
32 std::string* out_contents);
33
Adam Lesinski4c67a472016-11-10 16:43:59 -080034::testing::AssertionResult IsStringEqual(const ResTable& table, uint32_t resource_id,
Adam Lesinski7a37b742016-10-12 14:05:55 -070035 const char* expected_str);
Adam Lesinski60293192014-10-21 18:36:42 -070036
Adam Lesinski7a37b742016-10-12 14:05:55 -070037} // namespace android
Adam Lesinski31245b42014-08-22 19:10:56 -070038
Adam Lesinski873ef0e2017-10-11 16:50:37 -070039#endif // ANDROIDFW_TEST_TESTHELPERS_H