Update docs, and syncronize libtest.
[awesomized/libmemcached] / libtest / stats.h
1 /* uTest Copyright (C) 2011 Data Differential, http://datadifferential.com/
2 *
3 * Use and distribution licensed under the BSD license. See
4 * the COPYING file in the parent directory for full text.
5 */
6
7 #pragma once
8 struct Stats {
9 int32_t collection_success;
10 int32_t collection_skipped;
11 int32_t collection_failed;
12 int32_t collection_total;
13
14 uint32_t success;
15 uint32_t skipped;
16 uint32_t failed;
17 uint32_t total;
18
19 Stats() :
20 collection_success(0),
21 collection_skipped(0),
22 collection_failed(0),
23 collection_total(0),
24 success(0),
25 skipped(0),
26 failed(0),
27 total(0)
28 { }
29 };
30