Update docs, and syncronize libtest.
[m6w6/libmemcached] / libtest / runner.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 /**
11 Structure which houses the actual callers for the test cases contained in
12 the collections.
13 */
14 struct Runner {
15 test_callback_runner_fn *pre;
16 test_callback_runner_fn *run;
17 test_callback_runner_fn *post;
18 };
19