X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=test%2Flib%2FReturnMatcher.hpp;h=5de5b3b28e348cb4dcf8ba55991581d1d279fe78;hb=fb3710011600c04359d26615be7a92df1742a3e9;hp=48c9ca28b532c2f1b8fdfb7ed9cb91fd90a53507;hpb=0bbdb4d274f7a2abc4383b5427c3aa600aa2f475;p=m6w6%2Flibmemcached diff --git a/test/lib/ReturnMatcher.hpp b/test/lib/ReturnMatcher.hpp index 48c9ca28..5de5b3b2 100644 --- a/test/lib/ReturnMatcher.hpp +++ b/test/lib/ReturnMatcher.hpp @@ -1,22 +1,37 @@ +/* + +--------------------------------------------------------------------+ + | libmemcached - C/C++ Client Library for memcached | + +--------------------------------------------------------------------+ + | Redistribution and use in source and binary forms, with or without | + | modification, are permitted under the terms of the BSD license. | + | You should have received a copy of the license in a bundled file | + | named LICENSE; in case you did not receive a copy you can review | + | the terms online at: https://opensource.org/licenses/BSD-3-Clause | + +--------------------------------------------------------------------+ + | Copyright (c) 2006-2014 Brian Aker https://datadifferential.com/ | + | Copyright (c) 2020 Michael Wallner | + +--------------------------------------------------------------------+ +*/ + #pragma once #include "test/lib/common.hpp" class ReturnMatcher : public Catch::MatcherBase { public: - explicit ReturnMatcher(const memcached_st *memc_, memcached_return_t expected_ = MEMCACHED_SUCCESS) - : memc{memc_} - , expected{expected_} - {} + explicit ReturnMatcher(const memcached_st *memc_, + memcached_return_t expected_ = MEMCACHED_SUCCESS) + : memc{memc_} + , expected{expected_} {} ReturnMatcher(const ReturnMatcher &) = default; ReturnMatcher(ReturnMatcher &&rm); - ReturnMatcher &operator = (ReturnMatcher &&rm); + ReturnMatcher &operator=(ReturnMatcher &&rm); bool match(const memcached_return_t &arg) const override; ReturnMatcher success(); - ReturnMatcher operator () (memcached_return_t expected_); + ReturnMatcher operator()(memcached_return_t expected_); protected: string describe() const override; @@ -29,6 +44,6 @@ private: class LoneReturnMatcher { public: ReturnMatcher returns; - explicit LoneReturnMatcher(const memcached_st *memc) : returns{memc} - {} + explicit LoneReturnMatcher(const memcached_st *memc) + : returns{memc} {} };