Adding gtest framework.
[awesomized/libmemcached] / unittests / main.cc
1 /* -*- mode: c; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2 * vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
3 *
4 * Copyright (C) 2010 Monty Taylor
5 *
6 * All rights reserved.
7 *
8 * Use and distribution licensed under the BSD license. See
9 * the COPYING file in the parent directory for full text.
10 */
11
12 #include "config.h"
13
14 #include <gtest/gtest.h>
15
16
17 int main(int argc, char **argv)
18 {
19 ::testing::InitGoogleTest(&argc, argv);
20 return RUN_ALL_TESTS();
21 }