Refactoring according Google C++ Style.

This commit is contained in:
Adam Gu
2018-05-18 15:37:09 +08:00
parent 189a246221
commit 1bab2da8f4
49 changed files with 894 additions and 483 deletions
+1 -5
View File
@@ -1,10 +1,8 @@
#include "webcc/rest_server.h"
#include "webcc/rest_service_manager.h"
#include "gtest/gtest.h"
using namespace webcc;
////////////////////////////////////////////////////////////////////////////////
class TestRestService : public RestService {
public:
bool Handle(const std::string& http_method,
@@ -16,8 +14,6 @@ public:
}
};
////////////////////////////////////////////////////////////////////////////////
TEST(RestServiceManager, URL_RegexBasic) {
RestServiceManager service_manager;