Adam Lesinski | f90f2f8d | 2014-06-06 14:27:00 -0700 | [diff] [blame] | 1 | #ifndef __TEST_HELPERS_H |
| 2 | #define __TEST_HELPERS_H |
| 3 | |
| 4 | #include <ostream> |
| 5 | |
Adam Lesinski | 31245b4 | 2014-08-22 19:10:56 -0700 | [diff] [blame^] | 6 | #include <androidfw/ResourceTypes.h> |
Adam Lesinski | f90f2f8d | 2014-06-06 14:27:00 -0700 | [diff] [blame] | 7 | #include <utils/String8.h> |
| 8 | #include <utils/String16.h> |
| 9 | |
| 10 | static inline ::std::ostream& operator<<(::std::ostream& out, const android::String8& str) { |
| 11 | return out << str.string(); |
| 12 | } |
| 13 | |
| 14 | static inline ::std::ostream& operator<<(::std::ostream& out, const android::String16& str) { |
| 15 | return out << android::String8(str).string(); |
| 16 | } |
| 17 | |
Adam Lesinski | 31245b4 | 2014-08-22 19:10:56 -0700 | [diff] [blame^] | 18 | namespace android { |
| 19 | |
| 20 | static inline bool operator==(const android::ResTable_config& a, const android::ResTable_config& b) { |
| 21 | return memcmp(&a, &b, sizeof(a)) == 0; |
| 22 | } |
| 23 | |
| 24 | static inline ::std::ostream& operator<<(::std::ostream& out, const android::ResTable_config& c) { |
| 25 | return out << c.toString().string(); |
| 26 | } |
| 27 | |
| 28 | } // namespace android |
| 29 | |
Adam Lesinski | f90f2f8d | 2014-06-06 14:27:00 -0700 | [diff] [blame] | 30 | #endif // __TEST_HELPERS_H |