Update docs, and syncronize libtest.
[awesomized/libmemcached] / libtest / collection.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
9 /**
10 A structure which describes a collection of test cases.
11 */
12 struct collection_st {
13 const char *name;
14 test_callback_fn *pre;
15 test_callback_fn *post;
16 struct test_st *tests;
17 };
18
19