1.Android.bp
cc_test {
name: "gtest_01",
shared_libs: [
"libbase",
"liblog",
"libmedia_helper",
"libutils",
"libxml2",
],
srcs: ["gtest_01.cpp"],
}
2.gtest_01.cpp
#include#include TEST(test1, test2) { printf("xxx------------->%s(), line = %dn",__FUNCTION__,__LINE__); ALOGE("xxx------------->%s(), line = %d",__FUNCTION__,__LINE__); } TEST(test3, test4) { printf("xxx------------->%s(), line = %dn",__FUNCTION__,__LINE__); ALOGE("xxx------------->%s(), line = %d",__FUNCTION__,__LINE__); }



