Convert buffer_t to gmock.

This commit is contained in:
Joe Thornber
2013-03-22 12:04:38 +00:00
parent e3375443eb
commit c044c2c729
6 changed files with 121 additions and 263 deletions

11
unit-tests/gmock_main.cc Normal file
View File

@@ -0,0 +1,11 @@
#include "gtest/gtest.h"
//----------------------------------------------------------------
int main(int argc, char **argv)
{
testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();
}
//----------------------------------------------------------------