#include #include #include #include #include using namespace ofen; void testA() { assert(COfPath::is_same_path(ofT("D:/Java"), ofT("D:\\Java\\"))); } void testB() { auto home = COfPath::get_home(); assert(!home.empty()); auto rp = COfStr::replace(ofT("cpp/z"), ofT("p/"), ofT("Ni")); assert(rp == ofT("cpNiz")); } void testC() { std::string source(u8"这是 一 个测试 用例。 "); std::string expect(u8"这是一个测试用例。"); assert(CCodec::rbs(source) == expect); } int main() { testA(); testB(); testC(); std::cout << "Done" << std::endl; return 0; }