xref: /aosp_15_r20/external/cronet/third_party/abseil-cpp/absl/log/check_test.cc (revision 6777b5387eb2ff775bb5750e3f5d96f37fb7352b)
1 //
2 // Copyright 2022 The Abseil Authors.
3 //
4 // Licensed under the Apache License, Version 2.0 (the "License");
5 // you may not use this file except in compliance with the License.
6 // You may obtain a copy of the License at
7 //
8 //      https://www.apache.org/licenses/LICENSE-2.0
9 //
10 // Unless required by applicable law or agreed to in writing, software
11 // distributed under the License is distributed on an "AS IS" BASIS,
12 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 // See the License for the specific language governing permissions and
14 // limitations under the License.
15 
16 #include "absl/log/check.h"
17 
18 #define ABSL_TEST_CHECK CHECK
19 #define ABSL_TEST_CHECK_OK CHECK_OK
20 #define ABSL_TEST_CHECK_EQ CHECK_EQ
21 #define ABSL_TEST_CHECK_NE CHECK_NE
22 #define ABSL_TEST_CHECK_GE CHECK_GE
23 #define ABSL_TEST_CHECK_LE CHECK_LE
24 #define ABSL_TEST_CHECK_GT CHECK_GT
25 #define ABSL_TEST_CHECK_LT CHECK_LT
26 #define ABSL_TEST_CHECK_STREQ CHECK_STREQ
27 #define ABSL_TEST_CHECK_STRNE CHECK_STRNE
28 #define ABSL_TEST_CHECK_STRCASEEQ CHECK_STRCASEEQ
29 #define ABSL_TEST_CHECK_STRCASENE CHECK_STRCASENE
30 
31 #define ABSL_TEST_DCHECK DCHECK
32 #define ABSL_TEST_DCHECK_OK DCHECK_OK
33 #define ABSL_TEST_DCHECK_EQ DCHECK_EQ
34 #define ABSL_TEST_DCHECK_NE DCHECK_NE
35 #define ABSL_TEST_DCHECK_GE DCHECK_GE
36 #define ABSL_TEST_DCHECK_LE DCHECK_LE
37 #define ABSL_TEST_DCHECK_GT DCHECK_GT
38 #define ABSL_TEST_DCHECK_LT DCHECK_LT
39 #define ABSL_TEST_DCHECK_STREQ DCHECK_STREQ
40 #define ABSL_TEST_DCHECK_STRNE DCHECK_STRNE
41 #define ABSL_TEST_DCHECK_STRCASEEQ DCHECK_STRCASEEQ
42 #define ABSL_TEST_DCHECK_STRCASENE DCHECK_STRCASENE
43 
44 #define ABSL_TEST_QCHECK QCHECK
45 #define ABSL_TEST_QCHECK_OK QCHECK_OK
46 #define ABSL_TEST_QCHECK_EQ QCHECK_EQ
47 #define ABSL_TEST_QCHECK_NE QCHECK_NE
48 #define ABSL_TEST_QCHECK_GE QCHECK_GE
49 #define ABSL_TEST_QCHECK_LE QCHECK_LE
50 #define ABSL_TEST_QCHECK_GT QCHECK_GT
51 #define ABSL_TEST_QCHECK_LT QCHECK_LT
52 #define ABSL_TEST_QCHECK_STREQ QCHECK_STREQ
53 #define ABSL_TEST_QCHECK_STRNE QCHECK_STRNE
54 #define ABSL_TEST_QCHECK_STRCASEEQ QCHECK_STRCASEEQ
55 #define ABSL_TEST_QCHECK_STRCASENE QCHECK_STRCASENE
56 
57 #include "gtest/gtest.h"
58 #include "absl/log/check_test_impl.inc"
59