start using a .clang-format code style
[m6w6/libmemcached] / test / lib / ReturnMatcher.hpp
index 48c9ca28b532c2f1b8fdfb7ed9cb91fd90a53507..5de5b3b28e348cb4dcf8ba55991581d1d279fe78 100644 (file)
@@ -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   <mike@php.net>                |
+    +--------------------------------------------------------------------+
+*/
+
 #pragma once
 
 #include "test/lib/common.hpp"
 
 class ReturnMatcher : public Catch::MatcherBase<memcached_return_t> {
 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} {}
 };