cppjieba_rb 0.4.2 → 0.4.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (126) hide show
  1. checksums.yaml +4 -4
  2. data/.editorconfig +21 -0
  3. data/.github/workflows/linting.yml +30 -0
  4. data/.github/workflows/release.yml +42 -0
  5. data/.github/workflows/tests.yml +47 -0
  6. data/.gitignore +1 -0
  7. data/.rubocop.yml +45 -0
  8. data/.ruby-version +1 -0
  9. data/.yamllint +35 -0
  10. data/CHANGELOG.md +17 -0
  11. data/Gemfile +11 -0
  12. data/README.md +5 -5
  13. data/Rakefile +16 -7
  14. data/cppjieba_rb.gemspec +46 -33
  15. data/ext/cppjieba/.github/workflows/cmake.yml +52 -0
  16. data/ext/cppjieba/.github/workflows/stale-issues.yml +24 -0
  17. data/ext/cppjieba/.gitmodules +3 -0
  18. data/ext/cppjieba/{ChangeLog.md → CHANGELOG.md} +50 -1
  19. data/ext/cppjieba/CMakeLists.txt +11 -14
  20. data/ext/cppjieba/LICENSE +20 -0
  21. data/ext/cppjieba/README.md +9 -18
  22. data/ext/cppjieba/deps/limonp/.github/workflows/cmake.yml +43 -0
  23. data/ext/cppjieba/deps/limonp/.gitignore +9 -0
  24. data/ext/cppjieba/deps/limonp/CHANGELOG.md +160 -0
  25. data/ext/cppjieba/deps/limonp/CMakeLists.txt +61 -0
  26. data/ext/cppjieba/deps/limonp/LICENSE +20 -0
  27. data/ext/cppjieba/deps/limonp/README.md +38 -0
  28. data/ext/cppjieba/deps/limonp/{LocalVector.hpp → include/limonp/LocalVector.hpp} +3 -3
  29. data/ext/cppjieba/deps/limonp/{Logging.hpp → include/limonp/Logging.hpp} +17 -3
  30. data/ext/cppjieba/deps/limonp/{StringUtil.hpp → include/limonp/StringUtil.hpp} +31 -10
  31. data/ext/cppjieba/deps/limonp/test/CMakeLists.txt +8 -0
  32. data/ext/cppjieba/deps/limonp/test/demo.cpp +40 -0
  33. data/ext/cppjieba/deps/limonp/test/testdata/1.conf +5 -0
  34. data/ext/cppjieba/deps/limonp/test/testdata/StdExtension.data +3 -0
  35. data/ext/cppjieba/deps/limonp/test/testdata/dict.gbk +50 -0
  36. data/ext/cppjieba/deps/limonp/test/testdata/dict.utf8 +50 -0
  37. data/ext/cppjieba/deps/limonp/test/testdata/io_testfile +2 -0
  38. data/ext/cppjieba/deps/limonp/test/testdata/jieba.dict.0.1.utf8 +93 -0
  39. data/ext/cppjieba/deps/limonp/test/testdata/jieba.dict.0.utf8 +93 -0
  40. data/ext/cppjieba/deps/limonp/test/testdata/jieba.dict.1.utf8 +67 -0
  41. data/ext/cppjieba/deps/limonp/test/testdata/jieba.dict.2.utf8 +64 -0
  42. data/ext/cppjieba/deps/limonp/test/unittest/CMakeLists.txt +30 -0
  43. data/ext/cppjieba/deps/limonp/test/unittest/TArgvContext.cpp +16 -0
  44. data/ext/cppjieba/deps/limonp/test/unittest/TCastFloat.cpp +19 -0
  45. data/ext/cppjieba/deps/limonp/test/unittest/TClosure.cpp +85 -0
  46. data/ext/cppjieba/deps/limonp/test/unittest/TColorPrint.cpp +20 -0
  47. data/ext/cppjieba/deps/limonp/test/unittest/TConfig.cpp +17 -0
  48. data/ext/cppjieba/deps/limonp/test/unittest/TLocalVector.cpp +41 -0
  49. data/ext/cppjieba/deps/limonp/test/unittest/TLogging.cpp +12 -0
  50. data/ext/cppjieba/deps/limonp/test/unittest/TStdExtension.cpp +95 -0
  51. data/ext/cppjieba/deps/limonp/test/unittest/TStringUtil.cpp +183 -0
  52. data/ext/cppjieba/include/cppjieba/DictTrie.hpp +9 -0
  53. data/ext/cppjieba/include/cppjieba/Jieba.hpp +4 -0
  54. data/ext/cppjieba/include/cppjieba/Trie.hpp +27 -1
  55. data/ext/cppjieba/test/CMakeLists.txt +4 -3
  56. data/ext/cppjieba/test/unittest/CMakeLists.txt +16 -7
  57. data/ext/cppjieba_rb/extconf.rb +11 -6
  58. data/lib/cppjieba_rb/segment.rb +4 -1
  59. data/lib/cppjieba_rb/version.rb +3 -1
  60. data/lib/cppjieba_rb.rb +12 -5
  61. data/test/test_keyword.rb +8 -8
  62. data/test/test_segment.rb +14 -10
  63. data/test/test_stop_word_filter.rb +5 -3
  64. data/test/test_tagging.rb +5 -2
  65. metadata +63 -140
  66. data/.travis.yml +0 -30
  67. data/ext/cppjieba/.travis.yml +0 -21
  68. data/ext/cppjieba/README_EN.md +0 -115
  69. data/ext/cppjieba/appveyor.yml +0 -32
  70. data/ext/cppjieba/deps/CMakeLists.txt +0 -1
  71. data/ext/cppjieba/deps/gtest/CMakeLists.txt +0 -5
  72. data/ext/cppjieba/deps/gtest/include/gtest/gtest-death-test.h +0 -283
  73. data/ext/cppjieba/deps/gtest/include/gtest/gtest-message.h +0 -230
  74. data/ext/cppjieba/deps/gtest/include/gtest/gtest-param-test.h +0 -1421
  75. data/ext/cppjieba/deps/gtest/include/gtest/gtest-param-test.h.pump +0 -487
  76. data/ext/cppjieba/deps/gtest/include/gtest/gtest-printers.h +0 -796
  77. data/ext/cppjieba/deps/gtest/include/gtest/gtest-spi.h +0 -232
  78. data/ext/cppjieba/deps/gtest/include/gtest/gtest-test-part.h +0 -176
  79. data/ext/cppjieba/deps/gtest/include/gtest/gtest-typed-test.h +0 -259
  80. data/ext/cppjieba/deps/gtest/include/gtest/gtest.h +0 -2155
  81. data/ext/cppjieba/deps/gtest/include/gtest/gtest_pred_impl.h +0 -358
  82. data/ext/cppjieba/deps/gtest/include/gtest/gtest_prod.h +0 -58
  83. data/ext/cppjieba/deps/gtest/include/gtest/internal/gtest-death-test-internal.h +0 -308
  84. data/ext/cppjieba/deps/gtest/include/gtest/internal/gtest-filepath.h +0 -210
  85. data/ext/cppjieba/deps/gtest/include/gtest/internal/gtest-internal.h +0 -1226
  86. data/ext/cppjieba/deps/gtest/include/gtest/internal/gtest-linked_ptr.h +0 -233
  87. data/ext/cppjieba/deps/gtest/include/gtest/internal/gtest-param-util-generated.h +0 -4822
  88. data/ext/cppjieba/deps/gtest/include/gtest/internal/gtest-param-util-generated.h.pump +0 -301
  89. data/ext/cppjieba/deps/gtest/include/gtest/internal/gtest-param-util.h +0 -619
  90. data/ext/cppjieba/deps/gtest/include/gtest/internal/gtest-port.h +0 -1788
  91. data/ext/cppjieba/deps/gtest/include/gtest/internal/gtest-string.h +0 -350
  92. data/ext/cppjieba/deps/gtest/include/gtest/internal/gtest-tuple.h +0 -968
  93. data/ext/cppjieba/deps/gtest/include/gtest/internal/gtest-tuple.h.pump +0 -336
  94. data/ext/cppjieba/deps/gtest/include/gtest/internal/gtest-type-util.h +0 -3330
  95. data/ext/cppjieba/deps/gtest/include/gtest/internal/gtest-type-util.h.pump +0 -296
  96. data/ext/cppjieba/deps/gtest/src/.deps/gtest-all.Plo +0 -681
  97. data/ext/cppjieba/deps/gtest/src/.deps/gtest_main.Plo +0 -509
  98. data/ext/cppjieba/deps/gtest/src/.dirstamp +0 -0
  99. data/ext/cppjieba/deps/gtest/src/gtest-all.cc +0 -48
  100. data/ext/cppjieba/deps/gtest/src/gtest-death-test.cc +0 -1234
  101. data/ext/cppjieba/deps/gtest/src/gtest-filepath.cc +0 -380
  102. data/ext/cppjieba/deps/gtest/src/gtest-internal-inl.h +0 -1038
  103. data/ext/cppjieba/deps/gtest/src/gtest-port.cc +0 -746
  104. data/ext/cppjieba/deps/gtest/src/gtest-printers.cc +0 -356
  105. data/ext/cppjieba/deps/gtest/src/gtest-test-part.cc +0 -110
  106. data/ext/cppjieba/deps/gtest/src/gtest-typed-test.cc +0 -110
  107. data/ext/cppjieba/deps/gtest/src/gtest.cc +0 -4898
  108. data/ext/cppjieba/deps/limonp/BlockingQueue.hpp +0 -49
  109. data/ext/cppjieba/deps/limonp/BoundedBlockingQueue.hpp +0 -67
  110. data/ext/cppjieba/deps/limonp/BoundedQueue.hpp +0 -65
  111. data/ext/cppjieba/deps/limonp/FileLock.hpp +0 -74
  112. data/ext/cppjieba/deps/limonp/Md5.hpp +0 -411
  113. data/ext/cppjieba/deps/limonp/MutexLock.hpp +0 -51
  114. data/ext/cppjieba/deps/limonp/Thread.hpp +0 -44
  115. data/ext/cppjieba/deps/limonp/ThreadPool.hpp +0 -86
  116. data/ext/cppjieba/test/demo.cpp +0 -80
  117. /data/ext/cppjieba/deps/{gtest/src/.deps/.dirstamp → limonp/.gitmodules} +0 -0
  118. /data/ext/cppjieba/deps/limonp/{ArgvContext.hpp → include/limonp/ArgvContext.hpp} +0 -0
  119. /data/ext/cppjieba/deps/limonp/{Closure.hpp → include/limonp/Closure.hpp} +0 -0
  120. /data/ext/cppjieba/deps/limonp/{Colors.hpp → include/limonp/Colors.hpp} +0 -0
  121. /data/ext/cppjieba/deps/limonp/{Condition.hpp → include/limonp/Condition.hpp} +0 -0
  122. /data/ext/cppjieba/deps/limonp/{Config.hpp → include/limonp/Config.hpp} +0 -0
  123. /data/ext/cppjieba/deps/limonp/{ForcePublic.hpp → include/limonp/ForcePublic.hpp} +0 -0
  124. /data/ext/cppjieba/deps/limonp/{NonCopyable.hpp → include/limonp/NonCopyable.hpp} +0 -0
  125. /data/ext/cppjieba/deps/limonp/{StdExtension.hpp → include/limonp/StdExtension.hpp} +0 -0
  126. /data/ext/cppjieba/deps/{gtest/src/gtest_main.cc → limonp/test/unittest/gtest_main.cpp} +0 -0
@@ -1,358 +0,0 @@
1
- // Copyright 2006, Google Inc.
2
- // All rights reserved.
3
- //
4
- // Redistribution and use in source and binary forms, with or without
5
- // modification, are permitted provided that the following conditions are
6
- // met:
7
- //
8
- // * Redistributions of source code must retain the above copyright
9
- // notice, this list of conditions and the following disclaimer.
10
- // * Redistributions in binary form must reproduce the above
11
- // copyright notice, this list of conditions and the following disclaimer
12
- // in the documentation and/or other materials provided with the
13
- // distribution.
14
- // * Neither the name of Google Inc. nor the names of its
15
- // contributors may be used to endorse or promote products derived from
16
- // this software without specific prior written permission.
17
- //
18
- // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19
- // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20
- // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21
- // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22
- // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23
- // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24
- // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25
- // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26
- // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27
- // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28
- // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29
-
30
- // This file is AUTOMATICALLY GENERATED on 09/24/2010 by command
31
- // 'gen_gtest_pred_impl.py 5'. DO NOT EDIT BY HAND!
32
- //
33
- // Implements a family of generic predicate assertion macros.
34
-
35
- #ifndef GTEST_INCLUDE_GTEST_GTEST_PRED_IMPL_H_
36
- #define GTEST_INCLUDE_GTEST_GTEST_PRED_IMPL_H_
37
-
38
- // Makes sure this header is not included before gtest.h.
39
- #ifndef GTEST_INCLUDE_GTEST_GTEST_H_
40
- # error Do not include gtest_pred_impl.h directly. Include gtest.h instead.
41
- #endif // GTEST_INCLUDE_GTEST_GTEST_H_
42
-
43
- // This header implements a family of generic predicate assertion
44
- // macros:
45
- //
46
- // ASSERT_PRED_FORMAT1(pred_format, v1)
47
- // ASSERT_PRED_FORMAT2(pred_format, v1, v2)
48
- // ...
49
- //
50
- // where pred_format is a function or functor that takes n (in the
51
- // case of ASSERT_PRED_FORMATn) values and their source expression
52
- // text, and returns a testing::AssertionResult. See the definition
53
- // of ASSERT_EQ in gtest.h for an example.
54
- //
55
- // If you don't care about formatting, you can use the more
56
- // restrictive version:
57
- //
58
- // ASSERT_PRED1(pred, v1)
59
- // ASSERT_PRED2(pred, v1, v2)
60
- // ...
61
- //
62
- // where pred is an n-ary function or functor that returns bool,
63
- // and the values v1, v2, ..., must support the << operator for
64
- // streaming to std::ostream.
65
- //
66
- // We also define the EXPECT_* variations.
67
- //
68
- // For now we only support predicates whose arity is at most 5.
69
- // Please email googletestframework@googlegroups.com if you need
70
- // support for higher arities.
71
-
72
- // GTEST_ASSERT_ is the basic statement to which all of the assertions
73
- // in this file reduce. Don't use this in your code.
74
-
75
- #define GTEST_ASSERT_(expression, on_failure) \
76
- GTEST_AMBIGUOUS_ELSE_BLOCKER_ \
77
- if (const ::testing::AssertionResult gtest_ar = (expression)) \
78
- ; \
79
- else \
80
- on_failure(gtest_ar.failure_message())
81
-
82
-
83
- // Helper function for implementing {EXPECT|ASSERT}_PRED1. Don't use
84
- // this in your code.
85
- template <typename Pred,
86
- typename T1>
87
- AssertionResult AssertPred1Helper(const char* pred_text,
88
- const char* e1,
89
- Pred pred,
90
- const T1& v1) {
91
- if (pred(v1)) return AssertionSuccess();
92
-
93
- return AssertionFailure() << pred_text << "("
94
- << e1 << ") evaluates to false, where"
95
- << "\n" << e1 << " evaluates to " << v1;
96
- }
97
-
98
- // Internal macro for implementing {EXPECT|ASSERT}_PRED_FORMAT1.
99
- // Don't use this in your code.
100
- #define GTEST_PRED_FORMAT1_(pred_format, v1, on_failure)\
101
- GTEST_ASSERT_(pred_format(#v1, v1),\
102
- on_failure)
103
-
104
- // Internal macro for implementing {EXPECT|ASSERT}_PRED1. Don't use
105
- // this in your code.
106
- #define GTEST_PRED1_(pred, v1, on_failure)\
107
- GTEST_ASSERT_(::testing::AssertPred1Helper(#pred, \
108
- #v1, \
109
- pred, \
110
- v1), on_failure)
111
-
112
- // Unary predicate assertion macros.
113
- #define EXPECT_PRED_FORMAT1(pred_format, v1) \
114
- GTEST_PRED_FORMAT1_(pred_format, v1, GTEST_NONFATAL_FAILURE_)
115
- #define EXPECT_PRED1(pred, v1) \
116
- GTEST_PRED1_(pred, v1, GTEST_NONFATAL_FAILURE_)
117
- #define ASSERT_PRED_FORMAT1(pred_format, v1) \
118
- GTEST_PRED_FORMAT1_(pred_format, v1, GTEST_FATAL_FAILURE_)
119
- #define ASSERT_PRED1(pred, v1) \
120
- GTEST_PRED1_(pred, v1, GTEST_FATAL_FAILURE_)
121
-
122
-
123
-
124
- // Helper function for implementing {EXPECT|ASSERT}_PRED2. Don't use
125
- // this in your code.
126
- template <typename Pred,
127
- typename T1,
128
- typename T2>
129
- AssertionResult AssertPred2Helper(const char* pred_text,
130
- const char* e1,
131
- const char* e2,
132
- Pred pred,
133
- const T1& v1,
134
- const T2& v2) {
135
- if (pred(v1, v2)) return AssertionSuccess();
136
-
137
- return AssertionFailure() << pred_text << "("
138
- << e1 << ", "
139
- << e2 << ") evaluates to false, where"
140
- << "\n" << e1 << " evaluates to " << v1
141
- << "\n" << e2 << " evaluates to " << v2;
142
- }
143
-
144
- // Internal macro for implementing {EXPECT|ASSERT}_PRED_FORMAT2.
145
- // Don't use this in your code.
146
- #define GTEST_PRED_FORMAT2_(pred_format, v1, v2, on_failure)\
147
- GTEST_ASSERT_(pred_format(#v1, #v2, v1, v2),\
148
- on_failure)
149
-
150
- // Internal macro for implementing {EXPECT|ASSERT}_PRED2. Don't use
151
- // this in your code.
152
- #define GTEST_PRED2_(pred, v1, v2, on_failure)\
153
- GTEST_ASSERT_(::testing::AssertPred2Helper(#pred, \
154
- #v1, \
155
- #v2, \
156
- pred, \
157
- v1, \
158
- v2), on_failure)
159
-
160
- // Binary predicate assertion macros.
161
- #define EXPECT_PRED_FORMAT2(pred_format, v1, v2) \
162
- GTEST_PRED_FORMAT2_(pred_format, v1, v2, GTEST_NONFATAL_FAILURE_)
163
- #define EXPECT_PRED2(pred, v1, v2) \
164
- GTEST_PRED2_(pred, v1, v2, GTEST_NONFATAL_FAILURE_)
165
- #define ASSERT_PRED_FORMAT2(pred_format, v1, v2) \
166
- GTEST_PRED_FORMAT2_(pred_format, v1, v2, GTEST_FATAL_FAILURE_)
167
- #define ASSERT_PRED2(pred, v1, v2) \
168
- GTEST_PRED2_(pred, v1, v2, GTEST_FATAL_FAILURE_)
169
-
170
-
171
-
172
- // Helper function for implementing {EXPECT|ASSERT}_PRED3. Don't use
173
- // this in your code.
174
- template <typename Pred,
175
- typename T1,
176
- typename T2,
177
- typename T3>
178
- AssertionResult AssertPred3Helper(const char* pred_text,
179
- const char* e1,
180
- const char* e2,
181
- const char* e3,
182
- Pred pred,
183
- const T1& v1,
184
- const T2& v2,
185
- const T3& v3) {
186
- if (pred(v1, v2, v3)) return AssertionSuccess();
187
-
188
- return AssertionFailure() << pred_text << "("
189
- << e1 << ", "
190
- << e2 << ", "
191
- << e3 << ") evaluates to false, where"
192
- << "\n" << e1 << " evaluates to " << v1
193
- << "\n" << e2 << " evaluates to " << v2
194
- << "\n" << e3 << " evaluates to " << v3;
195
- }
196
-
197
- // Internal macro for implementing {EXPECT|ASSERT}_PRED_FORMAT3.
198
- // Don't use this in your code.
199
- #define GTEST_PRED_FORMAT3_(pred_format, v1, v2, v3, on_failure)\
200
- GTEST_ASSERT_(pred_format(#v1, #v2, #v3, v1, v2, v3),\
201
- on_failure)
202
-
203
- // Internal macro for implementing {EXPECT|ASSERT}_PRED3. Don't use
204
- // this in your code.
205
- #define GTEST_PRED3_(pred, v1, v2, v3, on_failure)\
206
- GTEST_ASSERT_(::testing::AssertPred3Helper(#pred, \
207
- #v1, \
208
- #v2, \
209
- #v3, \
210
- pred, \
211
- v1, \
212
- v2, \
213
- v3), on_failure)
214
-
215
- // Ternary predicate assertion macros.
216
- #define EXPECT_PRED_FORMAT3(pred_format, v1, v2, v3) \
217
- GTEST_PRED_FORMAT3_(pred_format, v1, v2, v3, GTEST_NONFATAL_FAILURE_)
218
- #define EXPECT_PRED3(pred, v1, v2, v3) \
219
- GTEST_PRED3_(pred, v1, v2, v3, GTEST_NONFATAL_FAILURE_)
220
- #define ASSERT_PRED_FORMAT3(pred_format, v1, v2, v3) \
221
- GTEST_PRED_FORMAT3_(pred_format, v1, v2, v3, GTEST_FATAL_FAILURE_)
222
- #define ASSERT_PRED3(pred, v1, v2, v3) \
223
- GTEST_PRED3_(pred, v1, v2, v3, GTEST_FATAL_FAILURE_)
224
-
225
-
226
-
227
- // Helper function for implementing {EXPECT|ASSERT}_PRED4. Don't use
228
- // this in your code.
229
- template <typename Pred,
230
- typename T1,
231
- typename T2,
232
- typename T3,
233
- typename T4>
234
- AssertionResult AssertPred4Helper(const char* pred_text,
235
- const char* e1,
236
- const char* e2,
237
- const char* e3,
238
- const char* e4,
239
- Pred pred,
240
- const T1& v1,
241
- const T2& v2,
242
- const T3& v3,
243
- const T4& v4) {
244
- if (pred(v1, v2, v3, v4)) return AssertionSuccess();
245
-
246
- return AssertionFailure() << pred_text << "("
247
- << e1 << ", "
248
- << e2 << ", "
249
- << e3 << ", "
250
- << e4 << ") evaluates to false, where"
251
- << "\n" << e1 << " evaluates to " << v1
252
- << "\n" << e2 << " evaluates to " << v2
253
- << "\n" << e3 << " evaluates to " << v3
254
- << "\n" << e4 << " evaluates to " << v4;
255
- }
256
-
257
- // Internal macro for implementing {EXPECT|ASSERT}_PRED_FORMAT4.
258
- // Don't use this in your code.
259
- #define GTEST_PRED_FORMAT4_(pred_format, v1, v2, v3, v4, on_failure)\
260
- GTEST_ASSERT_(pred_format(#v1, #v2, #v3, #v4, v1, v2, v3, v4),\
261
- on_failure)
262
-
263
- // Internal macro for implementing {EXPECT|ASSERT}_PRED4. Don't use
264
- // this in your code.
265
- #define GTEST_PRED4_(pred, v1, v2, v3, v4, on_failure)\
266
- GTEST_ASSERT_(::testing::AssertPred4Helper(#pred, \
267
- #v1, \
268
- #v2, \
269
- #v3, \
270
- #v4, \
271
- pred, \
272
- v1, \
273
- v2, \
274
- v3, \
275
- v4), on_failure)
276
-
277
- // 4-ary predicate assertion macros.
278
- #define EXPECT_PRED_FORMAT4(pred_format, v1, v2, v3, v4) \
279
- GTEST_PRED_FORMAT4_(pred_format, v1, v2, v3, v4, GTEST_NONFATAL_FAILURE_)
280
- #define EXPECT_PRED4(pred, v1, v2, v3, v4) \
281
- GTEST_PRED4_(pred, v1, v2, v3, v4, GTEST_NONFATAL_FAILURE_)
282
- #define ASSERT_PRED_FORMAT4(pred_format, v1, v2, v3, v4) \
283
- GTEST_PRED_FORMAT4_(pred_format, v1, v2, v3, v4, GTEST_FATAL_FAILURE_)
284
- #define ASSERT_PRED4(pred, v1, v2, v3, v4) \
285
- GTEST_PRED4_(pred, v1, v2, v3, v4, GTEST_FATAL_FAILURE_)
286
-
287
-
288
-
289
- // Helper function for implementing {EXPECT|ASSERT}_PRED5. Don't use
290
- // this in your code.
291
- template <typename Pred,
292
- typename T1,
293
- typename T2,
294
- typename T3,
295
- typename T4,
296
- typename T5>
297
- AssertionResult AssertPred5Helper(const char* pred_text,
298
- const char* e1,
299
- const char* e2,
300
- const char* e3,
301
- const char* e4,
302
- const char* e5,
303
- Pred pred,
304
- const T1& v1,
305
- const T2& v2,
306
- const T3& v3,
307
- const T4& v4,
308
- const T5& v5) {
309
- if (pred(v1, v2, v3, v4, v5)) return AssertionSuccess();
310
-
311
- return AssertionFailure() << pred_text << "("
312
- << e1 << ", "
313
- << e2 << ", "
314
- << e3 << ", "
315
- << e4 << ", "
316
- << e5 << ") evaluates to false, where"
317
- << "\n" << e1 << " evaluates to " << v1
318
- << "\n" << e2 << " evaluates to " << v2
319
- << "\n" << e3 << " evaluates to " << v3
320
- << "\n" << e4 << " evaluates to " << v4
321
- << "\n" << e5 << " evaluates to " << v5;
322
- }
323
-
324
- // Internal macro for implementing {EXPECT|ASSERT}_PRED_FORMAT5.
325
- // Don't use this in your code.
326
- #define GTEST_PRED_FORMAT5_(pred_format, v1, v2, v3, v4, v5, on_failure)\
327
- GTEST_ASSERT_(pred_format(#v1, #v2, #v3, #v4, #v5, v1, v2, v3, v4, v5),\
328
- on_failure)
329
-
330
- // Internal macro for implementing {EXPECT|ASSERT}_PRED5. Don't use
331
- // this in your code.
332
- #define GTEST_PRED5_(pred, v1, v2, v3, v4, v5, on_failure)\
333
- GTEST_ASSERT_(::testing::AssertPred5Helper(#pred, \
334
- #v1, \
335
- #v2, \
336
- #v3, \
337
- #v4, \
338
- #v5, \
339
- pred, \
340
- v1, \
341
- v2, \
342
- v3, \
343
- v4, \
344
- v5), on_failure)
345
-
346
- // 5-ary predicate assertion macros.
347
- #define EXPECT_PRED_FORMAT5(pred_format, v1, v2, v3, v4, v5) \
348
- GTEST_PRED_FORMAT5_(pred_format, v1, v2, v3, v4, v5, GTEST_NONFATAL_FAILURE_)
349
- #define EXPECT_PRED5(pred, v1, v2, v3, v4, v5) \
350
- GTEST_PRED5_(pred, v1, v2, v3, v4, v5, GTEST_NONFATAL_FAILURE_)
351
- #define ASSERT_PRED_FORMAT5(pred_format, v1, v2, v3, v4, v5) \
352
- GTEST_PRED_FORMAT5_(pred_format, v1, v2, v3, v4, v5, GTEST_FATAL_FAILURE_)
353
- #define ASSERT_PRED5(pred, v1, v2, v3, v4, v5) \
354
- GTEST_PRED5_(pred, v1, v2, v3, v4, v5, GTEST_FATAL_FAILURE_)
355
-
356
-
357
-
358
- #endif // GTEST_INCLUDE_GTEST_GTEST_PRED_IMPL_H_
@@ -1,58 +0,0 @@
1
- // Copyright 2006, Google Inc.
2
- // All rights reserved.
3
- //
4
- // Redistribution and use in source and binary forms, with or without
5
- // modification, are permitted provided that the following conditions are
6
- // met:
7
- //
8
- // * Redistributions of source code must retain the above copyright
9
- // notice, this list of conditions and the following disclaimer.
10
- // * Redistributions in binary form must reproduce the above
11
- // copyright notice, this list of conditions and the following disclaimer
12
- // in the documentation and/or other materials provided with the
13
- // distribution.
14
- // * Neither the name of Google Inc. nor the names of its
15
- // contributors may be used to endorse or promote products derived from
16
- // this software without specific prior written permission.
17
- //
18
- // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19
- // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20
- // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21
- // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22
- // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23
- // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24
- // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25
- // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26
- // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27
- // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28
- // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29
- //
30
- // Author: wan@google.com (Zhanyong Wan)
31
- //
32
- // Google C++ Testing Framework definitions useful in production code.
33
-
34
- #ifndef GTEST_INCLUDE_GTEST_GTEST_PROD_H_
35
- #define GTEST_INCLUDE_GTEST_GTEST_PROD_H_
36
-
37
- // When you need to test the private or protected members of a class,
38
- // use the FRIEND_TEST macro to declare your tests as friends of the
39
- // class. For example:
40
- //
41
- // class MyClass {
42
- // private:
43
- // void MyMethod();
44
- // FRIEND_TEST(MyClassTest, MyMethod);
45
- // };
46
- //
47
- // class MyClassTest : public testing::Test {
48
- // // ...
49
- // };
50
- //
51
- // TEST_F(MyClassTest, MyMethod) {
52
- // // Can call MyClass::MyMethod() here.
53
- // }
54
-
55
- #define FRIEND_TEST(test_case_name, test_name)\
56
- friend class test_case_name##_##test_name##_Test
57
-
58
- #endif // GTEST_INCLUDE_GTEST_GTEST_PROD_H_