摘要: Google C++ Testing Framework_01 #include class MyMath{public: static int Add(int num1, int num2);};int MyMath::Add(int num1, int num2){ return num1 + num2;}TEST(MyMathTest, Positive){ EX... 阅读全文
posted @ 2009-03-22 14:50 jerry550409 阅读(156) 评论(0) 推荐(0) 编辑