#ifndef __TEST_HELPERS_H #define __TEST_HELPERS_H #include #include #include static inline ::std::ostream& operator<<(::std::ostream& out, const android::String8& str) { return out << str.string(); } static inline ::std::ostream& operator<<(::std::ostream& out, const android::String16& str) { return out << android::String8(str).string(); } #endif // __TEST_HELPERS_H