Sha256: bca6bd4093dfb271204042684c9351aa7f9210dca1c57f9714f99deba8feda25

Contents?: true

Size: 1.48 KB

Versions: 1

Compression:

Stored size: 1.48 KB

Contents

/* -*- Mode: C++; tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*- */
/*
 *   Copyright 2020-2021 Couchbase, Inc.
 *
 *   Licensed under the Apache License, Version 2.0 (the "License");
 *   you may not use this file except in compliance with the License.
 *   You may obtain a copy of the License at
 *
 *       http://www.apache.org/licenses/LICENSE-2.0
 *
 *   Unless required by applicable law or agreed to in writing, software
 *   distributed under the License is distributed on an "AS IS" BASIS,
 *   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 *   See the License for the specific language governing permissions and
 *   limitations under the License.
 */

#pragma once

#define CATCH_CONFIG_MAIN

#include "utils/binary.hxx"
#include "utils/test_context.hxx"
#include "utils/test_data.hxx"

#include <catch2/catch.hpp>

#define REQUIRE_SUCCESS(ec) INFO((ec).message()) REQUIRE_FALSE(ec)
#define EXPECT_SUCCESS(result)                                                                                                             \
    if (!result) {                                                                                                                         \
        INFO(result.error().message())                                                                                                     \
    }                                                                                                                                      \
    REQUIRE(result)

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
couchbase-3.4.2 ext/couchbase/test/test_helper.hxx