make #includes consistent
[hiphop-php.git] / hphp / test / test_ext_memcached.h
blob27b8656dbbca51d2e8c61aa5c20d4a7a0bf6cc24
1 /*
2 +----------------------------------------------------------------------+
3 | HipHop for PHP |
4 +----------------------------------------------------------------------+
5 | Copyright (c) 2010 Hyves (http://www.hyves.nl) |
6 | Copyright (c) 2010- Facebook, Inc. (http://www.facebook.com) |
7 | Copyright (c) 1997-2010 The PHP Group |
8 +----------------------------------------------------------------------+
9 | This source file is subject to version 3.01 of the PHP license, |
10 | that is bundled with this package in the file LICENSE, and is |
11 | available through the world-wide-web at the following url: |
12 | http://www.php.net/license/3_01.txt |
13 | If you did not receive a copy of the PHP license and are unable to |
14 | obtain it through the world-wide-web, please send a note to |
15 | license@php.net so we can mail you a copy immediately. |
16 +----------------------------------------------------------------------+
19 #ifndef incl_HPHP_TEST_EXT_MEMCACHED_H_
20 #define incl_HPHP_TEST_EXT_MEMCACHED_H_
22 #include "hphp/test/test_cpp_ext.h"
24 ///////////////////////////////////////////////////////////////////////////////
26 class TestExtMemcached : public TestCppExt {
27 public:
28 virtual bool RunTests(const std::string &which);
30 bool test_Memcached_construct_persistent();
31 bool test_Memcached_get_set();
32 bool test_Memcached_types();
33 bool test_Memcached_cas();
34 bool test_Memcached_delete();
37 ///////////////////////////////////////////////////////////////////////////////
39 #endif // incl_HPHP_TEST_EXT_MEMCACHED_H_