ff70456473
- 20f4e7133d695e9a05e13ebdfd4d78da310b42b5 Remove the warning supressions -Wno-documentation and by Derek Mauro <dmauro@google.com> - e1bde85c0571673b1e7a88b9d45a393606ba7e6c Changed the optimized version of strings_internal::JoinAl... by Abseil Team <absl-team@google.com> - 746e6716b4c15be61547670d68d25a1c850d3954 Add missing absl:: qualification. by Alex Strelnikov <strel@google.com> - 4e5c18c488cbd49ca72b02911cf22d830d5a7f16 Internals change: Remove the ability to pass a custom met... by Greg Falcon <gfalcon@google.com> - 65d58107a5730d4b6468bbffc72bea2f980af826 Moved most common character case (ascii printable) out of... by Abseil Team <absl-team@google.com> - f031331cc55a3d57b9110e12c7cbe50ac3e2a04f Add missing copyright headers to a few source files. by Greg Falcon <gfalcon@google.com> - 6035a77af6fa951c536b42df4c710d16d1817aec Enable libstdc++'s memcmp optimization in absl::equal for... by Abseil Team <absl-team@google.com> - 73a665a4a10781e5d89f75a876ece7ad859f4116 Fix minor spelling error "hexidecimal". by Abseil Team <absl-team@google.com> GitOrigin-RevId: 20f4e7133d695e9a05e13ebdfd4d78da310b42b5 Change-Id: Id8c18ebd331d096935052a6ab259ebe0e2ef13ae
38 lines
1.2 KiB
C
38 lines
1.2 KiB
C
// Copyright 2017 The Abseil Authors.
|
|
//
|
|
// 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.
|
|
|
|
// Testing utilities for ABSL types which throw exceptions.
|
|
|
|
#ifndef ABSL_BASE_INTERNAL_EXCEPTION_TESTING_H_
|
|
#define ABSL_BASE_INTERNAL_EXCEPTION_TESTING_H_
|
|
|
|
#include "gtest/gtest.h"
|
|
#include "absl/base/config.h"
|
|
|
|
// ABSL_BASE_INTERNAL_EXPECT_FAIL tests either for a specified thrown exception
|
|
// if exceptions are enabled, or for death with a specified text in the error
|
|
// message
|
|
#ifdef ABSL_HAVE_EXCEPTIONS
|
|
|
|
#define ABSL_BASE_INTERNAL_EXPECT_FAIL(expr, exception_t, text) \
|
|
EXPECT_THROW(expr, exception_t)
|
|
|
|
#else
|
|
|
|
#define ABSL_BASE_INTERNAL_EXPECT_FAIL(expr, exception_t, text) \
|
|
EXPECT_DEATH(expr, text)
|
|
|
|
#endif
|
|
|
|
#endif // ABSL_BASE_INTERNAL_EXCEPTION_TESTING_H_
|