blob: ac80d88680905cce3f686013a67fe17f4453e1c2 [file] [log] [blame]
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07001#ifndef __TEST_HELPERS_H
2#define __TEST_HELPERS_H
3
4#include <ostream>
5
Adam Lesinski31245b42014-08-22 19:10:56 -07006#include <androidfw/ResourceTypes.h>
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07007#include <utils/String8.h>
8#include <utils/String16.h>
Adam Lesinski60293192014-10-21 18:36:42 -07009#include <gtest/gtest.h>
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -070010
11static inline ::std::ostream& operator<<(::std::ostream& out, const android::String8& str) {
12 return out << str.string();
13}
14
15static inline ::std::ostream& operator<<(::std::ostream& out, const android::String16& str) {
16 return out << android::String8(str).string();
17}
18
Adam Lesinski31245b42014-08-22 19:10:56 -070019namespace android {
20
Adam Lesinski60293192014-10-21 18:36:42 -070021enum { MAY_NOT_BE_BAG = false };
22
Adam Lesinski31245b42014-08-22 19:10:56 -070023static inline bool operator==(const android::ResTable_config& a, const android::ResTable_config& b) {
24 return memcmp(&a, &b, sizeof(a)) == 0;
25}
26
27static inline ::std::ostream& operator<<(::std::ostream& out, const android::ResTable_config& c) {
28 return out << c.toString().string();
29}
30
Adam Lesinski60293192014-10-21 18:36:42 -070031::testing::AssertionResult IsStringEqual(const ResTable& table, uint32_t resourceId, const char* expectedStr);
32
Adam Lesinski31245b42014-08-22 19:10:56 -070033} // namespace android
34
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -070035#endif // __TEST_HELPERS_H