Sha256: 7f1d190603b021422a800074500366c2fa28dfea92c8d9b3368b8b1a976e1479
Contents?: true
Size: 972 Bytes
Versions: 2
Compression:
Stored size: 972 Bytes
Contents
/* uTest Copyright (C) 2011 Data Differential, http://datadifferential.com/ * * Use and distribution licensed under the BSD license. See * the COPYING file in the parent directory for full text. */ #include <libtest/common.h> test_return_t Framework::destroy(void* arg) { if (_destroy) { return _destroy(arg); } return TEST_SUCCESS; } test_return_t Framework::Item::flush(void* arg, test_st* run) { if (run->requires_flush and _flush) { return _flush(arg); } return TEST_SUCCESS; } test_return_t Framework::on_error(const test_return_t rc, void* arg) { if (_on_error and test_failed(_on_error(rc, arg))) { return TEST_FAILURE; } return TEST_SUCCESS; } test_return_t Framework::startup(void* arg) { if (collection_startup) { return collection_startup(arg); } return TEST_SUCCESS; } test_return_t Framework::Item::startup(void* arg) { if (_startup) { return _startup(arg); } return TEST_SUCCESS; }
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
couchbase-memcached-1.2.9 | ext/libmemcached-0.50/libtest/framework.cc |
couchbase-memcached-1.2.8 | ext/libmemcached-0.50/libtest/framework.cc |