1// Copyright 2005, 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//
31// The Google C++ Testing and Mocking Framework (Google Test)
32//
33// This header file defines the public API for Google Test. It should be
34// included by any test program that uses Google Test.
35//
36// IMPORTANT NOTE: Due to limitation of the C++ language, we have to
37// leave some internal implementation details in this header file.
38// They are clearly marked by comments like this:
39//
40// // INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM.
41//
42// Such code is NOT meant to be used by a user directly, and is subject
43// to CHANGE WITHOUT NOTICE. Therefore DO NOT DEPEND ON IT in a user
44// program!
45//
46// Acknowledgment: Google Test borrowed the idea of automatic test
47// registration from Barthelemy Dagenais' ([email protected])
48// easyUnit framework.
49
50// GOOGLETEST_CM0001 DO NOT DELETE
51
52#ifndef GTEST_INCLUDE_GTEST_GTEST_H_
53#define GTEST_INCLUDE_GTEST_GTEST_H_
54
55#include <cstddef>
56#include <limits>
57#include <memory>
58#include <ostream>
59#include <type_traits>
60#include <vector>
61
62#include "gtest/internal/gtest-internal.h"
63#include "gtest/internal/gtest-string.h"
64#include "gtest/gtest-death-test.h"
65#include "gtest/gtest-matchers.h"
66#include "gtest/gtest-message.h"
67#include "gtest/gtest-param-test.h"
68#include "gtest/gtest-printers.h"
69#include "gtest/gtest_prod.h"
70#include "gtest/gtest-test-part.h"
71#include "gtest/gtest-typed-test.h"
72
73GTEST_DISABLE_MSC_WARNINGS_PUSH_(4251 \
74/* class A needs to have dll-interface to be used by clients of class B */)
75
76namespace testing {
77
78// Silence C4100 (unreferenced formal parameter) and 4805
79// unsafe mix of type 'const int' and type 'const bool'
80#ifdef _MSC_VER
81# pragma warning(push)
82# pragma warning(disable:4805)
83# pragma warning(disable:4100)
84#endif
85
86
87// Declares the flags.
88
89// This flag temporary enables the disabled tests.
90GTEST_DECLARE_bool_(also_run_disabled_tests);
91
92// This flag brings the debugger on an assertion failure.
93GTEST_DECLARE_bool_(break_on_failure);
94
95// This flag controls whether Google Test catches all test-thrown exceptions
96// and logs them as failures.
97GTEST_DECLARE_bool_(catch_exceptions);
98
99// This flag enables using colors in terminal output. Available values are
100// "yes" to enable colors, "no" (disable colors), or "auto" (the default)
101// to let Google Test decide.
102GTEST_DECLARE_string_(color);
103
104// This flag controls whether the test runner should continue execution past
105// first failure.
106GTEST_DECLARE_bool_(fail_fast);
107
108// This flag sets up the filter to select by name using a glob pattern
109// the tests to run. If the filter is not given all tests are executed.
110GTEST_DECLARE_string_(filter);
111
112// This flag controls whether Google Test installs a signal handler that dumps
113// debugging information when fatal signals are raised.
114GTEST_DECLARE_bool_(install_failure_signal_handler);
115
116// This flag causes the Google Test to list tests. None of the tests listed
117// are actually run if the flag is provided.
118GTEST_DECLARE_bool_(list_tests);
119
120// This flag controls whether Google Test emits a detailed XML report to a file
121// in addition to its normal textual output.
122GTEST_DECLARE_string_(output);
123
124// This flags control whether Google Test prints only test failures.
125GTEST_DECLARE_bool_(brief);
126
127// This flags control whether Google Test prints the elapsed time for each
128// test.
129GTEST_DECLARE_bool_(print_time);
130
131// This flags control whether Google Test prints UTF8 characters as text.
132GTEST_DECLARE_bool_(print_utf8);
133
134// This flag specifies the random number seed.
135GTEST_DECLARE_int32_(random_seed);
136
137// This flag sets how many times the tests are repeated. The default value
138// is 1. If the value is -1 the tests are repeating forever.
139GTEST_DECLARE_int32_(repeat);
140
141// This flag controls whether Google Test includes Google Test internal
142// stack frames in failure stack traces.
143GTEST_DECLARE_bool_(show_internal_stack_frames);
144
145// When this flag is specified, tests' order is randomized on every iteration.
146GTEST_DECLARE_bool_(shuffle);
147
148// This flag specifies the maximum number of stack frames to be
149// printed in a failure message.
150GTEST_DECLARE_int32_(stack_trace_depth);
151
152// When this flag is specified, a failed assertion will throw an
153// exception if exceptions are enabled, or exit the program with a
154// non-zero code otherwise. For use with an external test framework.
155GTEST_DECLARE_bool_(throw_on_failure);
156
157// When this flag is set with a "host:port" string, on supported
158// platforms test results are streamed to the specified port on
159// the specified host machine.
160GTEST_DECLARE_string_(stream_result_to);
161
162#if GTEST_USE_OWN_FLAGFILE_FLAG_
163GTEST_DECLARE_string_(flagfile);
164#endif // GTEST_USE_OWN_FLAGFILE_FLAG_
165
166// The upper limit for valid stack trace depths.
167const int kMaxStackTraceDepth = 100;
168
169namespace internal {
170
171class AssertHelper;
172class DefaultGlobalTestPartResultReporter;
173class ExecDeathTest;
174class NoExecDeathTest;
175class FinalSuccessChecker;
176class GTestFlagSaver;
177class StreamingListenerTest;
178class TestResultAccessor;
179class TestEventListenersAccessor;
180class TestEventRepeater;
181class UnitTestRecordPropertyTestHelper;
182class WindowsDeathTest;
183class FuchsiaDeathTest;
184class UnitTestImpl* GetUnitTestImpl();
185void ReportFailureInUnknownLocation(TestPartResult::Type result_type,
186 const std::string& message);
187std::set<std::string>* GetIgnoredParameterizedTestSuites();
188
189} // namespace internal
190
191// The friend relationship of some of these classes is cyclic.
192// If we don't forward declare them the compiler might confuse the classes
193// in friendship clauses with same named classes on the scope.
194class Test;
195class TestSuite;
196
197// Old API is still available but deprecated
198#ifndef GTEST_REMOVE_LEGACY_TEST_CASEAPI_
199using TestCase = TestSuite;
200#endif
201class TestInfo;
202class UnitTest;
203
204// A class for indicating whether an assertion was successful. When
205// the assertion wasn't successful, the AssertionResult object
206// remembers a non-empty message that describes how it failed.
207//
208// To create an instance of this class, use one of the factory functions
209// (AssertionSuccess() and AssertionFailure()).
210//
211// This class is useful for two purposes:
212// 1. Defining predicate functions to be used with Boolean test assertions
213// EXPECT_TRUE/EXPECT_FALSE and their ASSERT_ counterparts
214// 2. Defining predicate-format functions to be
215// used with predicate assertions (ASSERT_PRED_FORMAT*, etc).
216//
217// For example, if you define IsEven predicate:
218//
219// testing::AssertionResult IsEven(int n) {
220// if ((n % 2) == 0)
221// return testing::AssertionSuccess();
222// else
223// return testing::AssertionFailure() << n << " is odd";
224// }
225//
226// Then the failed expectation EXPECT_TRUE(IsEven(Fib(5)))
227// will print the message
228//
229// Value of: IsEven(Fib(5))
230// Actual: false (5 is odd)
231// Expected: true
232//
233// instead of a more opaque
234//
235// Value of: IsEven(Fib(5))
236// Actual: false
237// Expected: true
238//
239// in case IsEven is a simple Boolean predicate.
240//
241// If you expect your predicate to be reused and want to support informative
242// messages in EXPECT_FALSE and ASSERT_FALSE (negative assertions show up
243// about half as often as positive ones in our tests), supply messages for
244// both success and failure cases:
245//
246// testing::AssertionResult IsEven(int n) {
247// if ((n % 2) == 0)
248// return testing::AssertionSuccess() << n << " is even";
249// else
250// return testing::AssertionFailure() << n << " is odd";
251// }
252//
253// Then a statement EXPECT_FALSE(IsEven(Fib(6))) will print
254//
255// Value of: IsEven(Fib(6))
256// Actual: true (8 is even)
257// Expected: false
258//
259// NB: Predicates that support negative Boolean assertions have reduced
260// performance in positive ones so be careful not to use them in tests
261// that have lots (tens of thousands) of positive Boolean assertions.
262//
263// To use this class with EXPECT_PRED_FORMAT assertions such as:
264//
265// // Verifies that Foo() returns an even number.
266// EXPECT_PRED_FORMAT1(IsEven, Foo());
267//
268// you need to define:
269//
270// testing::AssertionResult IsEven(const char* expr, int n) {
271// if ((n % 2) == 0)
272// return testing::AssertionSuccess();
273// else
274// return testing::AssertionFailure()
275// << "Expected: " << expr << " is even\n Actual: it's " << n;
276// }
277//
278// If Foo() returns 5, you will see the following message:
279//
280// Expected: Foo() is even
281// Actual: it's 5
282//
283class GTEST_API_ AssertionResult {
284 public:
285 // Copy constructor.
286 // Used in EXPECT_TRUE/FALSE(assertion_result).
287 AssertionResult(const AssertionResult& other);
288
289// C4800 is a level 3 warning in Visual Studio 2015 and earlier.
290// This warning is not emitted in Visual Studio 2017.
291// This warning is off by default starting in Visual Studio 2019 but can be
292// enabled with command-line options.
293#if defined(_MSC_VER) && (_MSC_VER < 1910 || _MSC_VER >= 1920)
294 GTEST_DISABLE_MSC_WARNINGS_PUSH_(4800 /* forcing value to bool */)
295#endif
296
297 // Used in the EXPECT_TRUE/FALSE(bool_expression).
298 //
299 // T must be contextually convertible to bool.
300 //
301 // The second parameter prevents this overload from being considered if
302 // the argument is implicitly convertible to AssertionResult. In that case
303 // we want AssertionResult's copy constructor to be used.
304 template <typename T>
305 explicit AssertionResult(
306 const T& success,
307 typename std::enable_if<
308 !std::is_convertible<T, AssertionResult>::value>::type*
309 /*enabler*/
310 = nullptr)
311 : success_(success) {}
312
313#if defined(_MSC_VER) && (_MSC_VER < 1910 || _MSC_VER >= 1920)
314 GTEST_DISABLE_MSC_WARNINGS_POP_()
315#endif
316
317 // Assignment operator.
318 AssertionResult& operator=(AssertionResult other) {
319 swap(other);
320 return *this;
321 }
322
323 // Returns true if and only if the assertion succeeded.
324 operator bool() const { return success_; } // NOLINT
325
326 // Returns the assertion's negation. Used with EXPECT/ASSERT_FALSE.
327 AssertionResult operator!() const;
328
329 // Returns the text streamed into this AssertionResult. Test assertions
330 // use it when they fail (i.e., the predicate's outcome doesn't match the
331 // assertion's expectation). When nothing has been streamed into the
332 // object, returns an empty string.
333 const char* message() const {
334 return message_.get() != nullptr ? message_->c_str() : "";
335 }
336 // Deprecated; please use message() instead.
337 const char* failure_message() const { return message(); }
338
339 // Streams a custom failure message into this object.
340 template <typename T> AssertionResult& operator<<(const T& value) {
341 AppendMessage(Message() << value);
342 return *this;
343 }
344
345 // Allows streaming basic output manipulators such as endl or flush into
346 // this object.
347 AssertionResult& operator<<(
348 ::std::ostream& (*basic_manipulator)(::std::ostream& stream)) {
349 AppendMessage(Message() << basic_manipulator);
350 return *this;
351 }
352
353 private:
354 // Appends the contents of message to message_.
355 void AppendMessage(const Message& a_message) {
356 if (message_.get() == nullptr) message_.reset(new ::std::string);
357 message_->append(a_message.GetString().c_str());
358 }
359
360 // Swap the contents of this AssertionResult with other.
361 void swap(AssertionResult& other);
362
363 // Stores result of the assertion predicate.
364 bool success_;
365 // Stores the message describing the condition in case the expectation
366 // construct is not satisfied with the predicate's outcome.
367 // Referenced via a pointer to avoid taking too much stack frame space
368 // with test assertions.
369 std::unique_ptr< ::std::string> message_;
370};
371
372// Makes a successful assertion result.
373GTEST_API_ AssertionResult AssertionSuccess();
374
375// Makes a failed assertion result.
376GTEST_API_ AssertionResult AssertionFailure();
377
378// Makes a failed assertion result with the given failure message.
379// Deprecated; use AssertionFailure() << msg.
380GTEST_API_ AssertionResult AssertionFailure(const Message& msg);
381
382} // namespace testing
383
384// Includes the auto-generated header that implements a family of generic
385// predicate assertion macros. This include comes late because it relies on
386// APIs declared above.
387#include "gtest/gtest_pred_impl.h"
388
389namespace testing {
390
391// The abstract class that all tests inherit from.
392//
393// In Google Test, a unit test program contains one or many TestSuites, and
394// each TestSuite contains one or many Tests.
395//
396// When you define a test using the TEST macro, you don't need to
397// explicitly derive from Test - the TEST macro automatically does
398// this for you.
399//
400// The only time you derive from Test is when defining a test fixture
401// to be used in a TEST_F. For example:
402//
403// class FooTest : public testing::Test {
404// protected:
405// void SetUp() override { ... }
406// void TearDown() override { ... }
407// ...
408// };
409//
410// TEST_F(FooTest, Bar) { ... }
411// TEST_F(FooTest, Baz) { ... }
412//
413// Test is not copyable.
414class GTEST_API_ Test {
415 public:
416 friend class TestInfo;
417
418 // The d'tor is virtual as we intend to inherit from Test.
419 virtual ~Test();
420
421 // Sets up the stuff shared by all tests in this test suite.
422 //
423 // Google Test will call Foo::SetUpTestSuite() before running the first
424 // test in test suite Foo. Hence a sub-class can define its own
425 // SetUpTestSuite() method to shadow the one defined in the super
426 // class.
427 static void SetUpTestSuite() {}
428
429 // Tears down the stuff shared by all tests in this test suite.
430 //
431 // Google Test will call Foo::TearDownTestSuite() after running the last
432 // test in test suite Foo. Hence a sub-class can define its own
433 // TearDownTestSuite() method to shadow the one defined in the super
434 // class.
435 static void TearDownTestSuite() {}
436
437 // Legacy API is deprecated but still available. Use SetUpTestSuite and
438 // TearDownTestSuite instead.
439#ifndef GTEST_REMOVE_LEGACY_TEST_CASEAPI_
440 static void TearDownTestCase() {}
441 static void SetUpTestCase() {}
442#endif // GTEST_REMOVE_LEGACY_TEST_CASEAPI_
443
444 // Returns true if and only if the current test has a fatal failure.
445 static bool HasFatalFailure();
446
447 // Returns true if and only if the current test has a non-fatal failure.
448 static bool HasNonfatalFailure();
449
450 // Returns true if and only if the current test was skipped.
451 static bool IsSkipped();
452
453 // Returns true if and only if the current test has a (either fatal or
454 // non-fatal) failure.
455 static bool HasFailure() { return HasFatalFailure() || HasNonfatalFailure(); }
456
457 // Logs a property for the current test, test suite, or for the entire
458 // invocation of the test program when used outside of the context of a
459 // test suite. Only the last value for a given key is remembered. These
460 // are public static so they can be called from utility functions that are
461 // not members of the test fixture. Calls to RecordProperty made during
462 // lifespan of the test (from the moment its constructor starts to the
463 // moment its destructor finishes) will be output in XML as attributes of
464 // the <testcase> element. Properties recorded from fixture's
465 // SetUpTestSuite or TearDownTestSuite are logged as attributes of the
466 // corresponding <testsuite> element. Calls to RecordProperty made in the
467 // global context (before or after invocation of RUN_ALL_TESTS and from
468 // SetUp/TearDown method of Environment objects registered with Google
469 // Test) will be output as attributes of the <testsuites> element.
470 static void RecordProperty(const std::string& key, const std::string& value);
471 static void RecordProperty(const std::string& key, int value);
472
473 protected:
474 // Creates a Test object.
475 Test();
476
477 // Sets up the test fixture.
478 virtual void SetUp();
479
480 // Tears down the test fixture.
481 virtual void TearDown();
482
483 private:
484 // Returns true if and only if the current test has the same fixture class
485 // as the first test in the current test suite.
486 static bool HasSameFixtureClass();
487
488 // Runs the test after the test fixture has been set up.
489 //
490 // A sub-class must implement this to define the test logic.
491 //
492 // DO NOT OVERRIDE THIS FUNCTION DIRECTLY IN A USER PROGRAM.
493 // Instead, use the TEST or TEST_F macro.
494 virtual void TestBody() = 0;
495
496 // Sets up, executes, and tears down the test.
497 void Run();
498
499 // Deletes self. We deliberately pick an unusual name for this
500 // internal method to avoid clashing with names used in user TESTs.
501 void DeleteSelf_() { delete this; }
502
503 const std::unique_ptr<GTEST_FLAG_SAVER_> gtest_flag_saver_;
504
505 // Often a user misspells SetUp() as Setup() and spends a long time
506 // wondering why it is never called by Google Test. The declaration of
507 // the following method is solely for catching such an error at
508 // compile time:
509 //
510 // - The return type is deliberately chosen to be not void, so it
511 // will be a conflict if void Setup() is declared in the user's
512 // test fixture.
513 //
514 // - This method is private, so it will be another compiler error
515 // if the method is called from the user's test fixture.
516 //
517 // DO NOT OVERRIDE THIS FUNCTION.
518 //
519 // If you see an error about overriding the following function or
520 // about it being private, you have mis-spelled SetUp() as Setup().
521 struct Setup_should_be_spelled_SetUp {};
522 virtual Setup_should_be_spelled_SetUp* Setup() { return nullptr; }
523
524 // We disallow copying Tests.
525 GTEST_DISALLOW_COPY_AND_ASSIGN_(Test);
526};
527
528typedef internal::TimeInMillis TimeInMillis;
529
530// A copyable object representing a user specified test property which can be
531// output as a key/value string pair.
532//
533// Don't inherit from TestProperty as its destructor is not virtual.
534class TestProperty {
535 public:
536 // C'tor. TestProperty does NOT have a default constructor.
537 // Always use this constructor (with parameters) to create a
538 // TestProperty object.
539 TestProperty(const std::string& a_key, const std::string& a_value) :
540 key_(a_key), value_(a_value) {
541 }
542
543 // Gets the user supplied key.
544 const char* key() const {
545 return key_.c_str();
546 }
547
548 // Gets the user supplied value.
549 const char* value() const {
550 return value_.c_str();
551 }
552
553 // Sets a new value, overriding the one supplied in the constructor.
554 void SetValue(const std::string& new_value) {
555 value_ = new_value;
556 }
557
558 private:
559 // The key supplied by the user.
560 std::string key_;
561 // The value supplied by the user.
562 std::string value_;
563};
564
565// The result of a single Test. This includes a list of
566// TestPartResults, a list of TestProperties, a count of how many
567// death tests there are in the Test, and how much time it took to run
568// the Test.
569//
570// TestResult is not copyable.
571class GTEST_API_ TestResult {
572 public:
573 // Creates an empty TestResult.
574 TestResult();
575
576 // D'tor. Do not inherit from TestResult.
577 ~TestResult();
578
579 // Gets the number of all test parts. This is the sum of the number
580 // of successful test parts and the number of failed test parts.
581 int total_part_count() const;
582
583 // Returns the number of the test properties.
584 int test_property_count() const;
585
586 // Returns true if and only if the test passed (i.e. no test part failed).
587 bool Passed() const { return !Skipped() && !Failed(); }
588
589 // Returns true if and only if the test was skipped.
590 bool Skipped() const;
591
592 // Returns true if and only if the test failed.
593 bool Failed() const;
594
595 // Returns true if and only if the test fatally failed.
596 bool HasFatalFailure() const;
597
598 // Returns true if and only if the test has a non-fatal failure.
599 bool HasNonfatalFailure() const;
600
601 // Returns the elapsed time, in milliseconds.
602 TimeInMillis elapsed_time() const { return elapsed_time_; }
603
604 // Gets the time of the test case start, in ms from the start of the
605 // UNIX epoch.
606 TimeInMillis start_timestamp() const { return start_timestamp_; }
607
608 // Returns the i-th test part result among all the results. i can range from 0
609 // to total_part_count() - 1. If i is not in that range, aborts the program.
610 const TestPartResult& GetTestPartResult(int i) const;
611
612 // Returns the i-th test property. i can range from 0 to
613 // test_property_count() - 1. If i is not in that range, aborts the
614 // program.
615 const TestProperty& GetTestProperty(int i) const;
616
617 private:
618 friend class TestInfo;
619 friend class TestSuite;
620 friend class UnitTest;
621 friend class internal::DefaultGlobalTestPartResultReporter;
622 friend class internal::ExecDeathTest;
623 friend class internal::TestResultAccessor;
624 friend class internal::UnitTestImpl;
625 friend class internal::WindowsDeathTest;
626 friend class internal::FuchsiaDeathTest;
627
628 // Gets the vector of TestPartResults.
629 const std::vector<TestPartResult>& test_part_results() const {
630 return test_part_results_;
631 }
632
633 // Gets the vector of TestProperties.
634 const std::vector<TestProperty>& test_properties() const {
635 return test_properties_;
636 }
637
638 // Sets the start time.
639 void set_start_timestamp(TimeInMillis start) { start_timestamp_ = start; }
640
641 // Sets the elapsed time.
642 void set_elapsed_time(TimeInMillis elapsed) { elapsed_time_ = elapsed; }
643
644 // Adds a test property to the list. The property is validated and may add
645 // a non-fatal failure if invalid (e.g., if it conflicts with reserved
646 // key names). If a property is already recorded for the same key, the
647 // value will be updated, rather than storing multiple values for the same
648 // key. xml_element specifies the element for which the property is being
649 // recorded and is used for validation.
650 void RecordProperty(const std::string& xml_element,
651 const TestProperty& test_property);
652
653 // Adds a failure if the key is a reserved attribute of Google Test
654 // testsuite tags. Returns true if the property is valid.
655 // FIXME: Validate attribute names are legal and human readable.
656 static bool ValidateTestProperty(const std::string& xml_element,
657 const TestProperty& test_property);
658
659 // Adds a test part result to the list.
660 void AddTestPartResult(const TestPartResult& test_part_result);
661
662 // Returns the death test count.
663 int death_test_count() const { return death_test_count_; }
664
665 // Increments the death test count, returning the new count.
666 int increment_death_test_count() { return ++death_test_count_; }
667
668 // Clears the test part results.
669 void ClearTestPartResults();
670
671 // Clears the object.
672 void Clear();
673
674 // Protects mutable state of the property vector and of owned
675 // properties, whose values may be updated.
676 internal::Mutex test_properites_mutex_;
677
678 // The vector of TestPartResults
679 std::vector<TestPartResult> test_part_results_;
680 // The vector of TestProperties
681 std::vector<TestProperty> test_properties_;
682 // Running count of death tests.
683 int death_test_count_;
684 // The start time, in milliseconds since UNIX Epoch.
685 TimeInMillis start_timestamp_;
686 // The elapsed time, in milliseconds.
687 TimeInMillis elapsed_time_;
688
689 // We disallow copying TestResult.
690 GTEST_DISALLOW_COPY_AND_ASSIGN_(TestResult);
691}; // class TestResult
692
693// A TestInfo object stores the following information about a test:
694//
695// Test suite name
696// Test name
697// Whether the test should be run
698// A function pointer that creates the test object when invoked
699// Test result
700//
701// The constructor of TestInfo registers itself with the UnitTest
702// singleton such that the RUN_ALL_TESTS() macro knows which tests to
703// run.
704class GTEST_API_ TestInfo {
705 public:
706 // Destructs a TestInfo object. This function is not virtual, so
707 // don't inherit from TestInfo.
708 ~TestInfo();
709
710 // Returns the test suite name.
711 const char* test_suite_name() const { return test_suite_name_.c_str(); }
712
713// Legacy API is deprecated but still available
714#ifndef GTEST_REMOVE_LEGACY_TEST_CASEAPI_
715 const char* test_case_name() const { return test_suite_name(); }
716#endif // GTEST_REMOVE_LEGACY_TEST_CASEAPI_
717
718 // Returns the test name.
719 const char* name() const { return name_.c_str(); }
720
721 // Returns the name of the parameter type, or NULL if this is not a typed
722 // or a type-parameterized test.
723 const char* type_param() const {
724 if (type_param_.get() != nullptr) return type_param_->c_str();
725 return nullptr;
726 }
727
728 // Returns the text representation of the value parameter, or NULL if this
729 // is not a value-parameterized test.
730 const char* value_param() const {
731 if (value_param_.get() != nullptr) return value_param_->c_str();
732 return nullptr;
733 }
734
735 // Returns the file name where this test is defined.
736 const char* file() const { return location_.file.c_str(); }
737
738 // Returns the line where this test is defined.
739 int line() const { return location_.line; }
740
741 // Return true if this test should not be run because it's in another shard.
742 bool is_in_another_shard() const { return is_in_another_shard_; }
743
744 // Returns true if this test should run, that is if the test is not
745 // disabled (or it is disabled but the also_run_disabled_tests flag has
746 // been specified) and its full name matches the user-specified filter.
747 //
748 // Google Test allows the user to filter the tests by their full names.
749 // The full name of a test Bar in test suite Foo is defined as
750 // "Foo.Bar". Only the tests that match the filter will run.
751 //
752 // A filter is a colon-separated list of glob (not regex) patterns,
753 // optionally followed by a '-' and a colon-separated list of
754 // negative patterns (tests to exclude). A test is run if it
755 // matches one of the positive patterns and does not match any of
756 // the negative patterns.
757 //
758 // For example, *A*:Foo.* is a filter that matches any string that
759 // contains the character 'A' or starts with "Foo.".
760 bool should_run() const { return should_run_; }
761
762 // Returns true if and only if this test will appear in the XML report.
763 bool is_reportable() const {
764 // The XML report includes tests matching the filter, excluding those
765 // run in other shards.
766 return matches_filter_ && !is_in_another_shard_;
767 }
768
769 // Returns the result of the test.
770 const TestResult* result() const { return &result_; }
771
772 private:
773#if GTEST_HAS_DEATH_TEST
774 friend class internal::DefaultDeathTestFactory;
775#endif // GTEST_HAS_DEATH_TEST
776 friend class Test;
777 friend class TestSuite;
778 friend class internal::UnitTestImpl;
779 friend class internal::StreamingListenerTest;
780 friend TestInfo* internal::MakeAndRegisterTestInfo(
781 const char* test_suite_name, const char* name, const char* type_param,
782 const char* value_param, internal::CodeLocation code_location,
783 internal::TypeId fixture_class_id, internal::SetUpTestSuiteFunc set_up_tc,
784 internal::TearDownTestSuiteFunc tear_down_tc,
785 internal::TestFactoryBase* factory);
786
787 // Constructs a TestInfo object. The newly constructed instance assumes
788 // ownership of the factory object.
789 TestInfo(const std::string& test_suite_name, const std::string& name,
790 const char* a_type_param, // NULL if not a type-parameterized test
791 const char* a_value_param, // NULL if not a value-parameterized test
792 internal::CodeLocation a_code_location,
793 internal::TypeId fixture_class_id,
794 internal::TestFactoryBase* factory);
795
796 // Increments the number of death tests encountered in this test so
797 // far.
798 int increment_death_test_count() {
799 return result_.increment_death_test_count();
800 }
801
802 // Creates the test object, runs it, records its result, and then
803 // deletes it.
804 void Run();
805
806 // Skip and records the test result for this object.
807 void Skip();
808
809 static void ClearTestResult(TestInfo* test_info) {
810 test_info->result_.Clear();
811 }
812
813 // These fields are immutable properties of the test.
814 const std::string test_suite_name_; // test suite name
815 const std::string name_; // Test name
816 // Name of the parameter type, or NULL if this is not a typed or a
817 // type-parameterized test.
818 const std::unique_ptr<const ::std::string> type_param_;
819 // Text representation of the value parameter, or NULL if this is not a
820 // value-parameterized test.
821 const std::unique_ptr<const ::std::string> value_param_;
822 internal::CodeLocation location_;
823 const internal::TypeId fixture_class_id_; // ID of the test fixture class
824 bool should_run_; // True if and only if this test should run
825 bool is_disabled_; // True if and only if this test is disabled
826 bool matches_filter_; // True if this test matches the
827 // user-specified filter.
828 bool is_in_another_shard_; // Will be run in another shard.
829 internal::TestFactoryBase* const factory_; // The factory that creates
830 // the test object
831
832 // This field is mutable and needs to be reset before running the
833 // test for the second time.
834 TestResult result_;
835
836 GTEST_DISALLOW_COPY_AND_ASSIGN_(TestInfo);
837};
838
839// A test suite, which consists of a vector of TestInfos.
840//
841// TestSuite is not copyable.
842class GTEST_API_ TestSuite {
843 public:
844 // Creates a TestSuite with the given name.
845 //
846 // TestSuite does NOT have a default constructor. Always use this
847 // constructor to create a TestSuite object.
848 //
849 // Arguments:
850 //
851 // name: name of the test suite
852 // a_type_param: the name of the test's type parameter, or NULL if
853 // this is not a type-parameterized test.
854 // set_up_tc: pointer to the function that sets up the test suite
855 // tear_down_tc: pointer to the function that tears down the test suite
856 TestSuite(const char* name, const char* a_type_param,
857 internal::SetUpTestSuiteFunc set_up_tc,
858 internal::TearDownTestSuiteFunc tear_down_tc);
859
860 // Destructor of TestSuite.
861 virtual ~TestSuite();
862
863 // Gets the name of the TestSuite.
864 const char* name() const { return name_.c_str(); }
865
866 // Returns the name of the parameter type, or NULL if this is not a
867 // type-parameterized test suite.
868 const char* type_param() const {
869 if (type_param_.get() != nullptr) return type_param_->c_str();
870 return nullptr;
871 }
872
873 // Returns true if any test in this test suite should run.
874 bool should_run() const { return should_run_; }
875
876 // Gets the number of successful tests in this test suite.
877 int successful_test_count() const;
878
879 // Gets the number of skipped tests in this test suite.
880 int skipped_test_count() const;
881
882 // Gets the number of failed tests in this test suite.
883 int failed_test_count() const;
884
885 // Gets the number of disabled tests that will be reported in the XML report.
886 int reportable_disabled_test_count() const;
887
888 // Gets the number of disabled tests in this test suite.
889 int disabled_test_count() const;
890
891 // Gets the number of tests to be printed in the XML report.
892 int reportable_test_count() const;
893
894 // Get the number of tests in this test suite that should run.
895 int test_to_run_count() const;
896
897 // Gets the number of all tests in this test suite.
898 int total_test_count() const;
899
900 // Returns true if and only if the test suite passed.
901 bool Passed() const { return !Failed(); }
902
903 // Returns true if and only if the test suite failed.
904 bool Failed() const {
905 return failed_test_count() > 0 || ad_hoc_test_result().Failed();
906 }
907
908 // Returns the elapsed time, in milliseconds.
909 TimeInMillis elapsed_time() const { return elapsed_time_; }
910
911 // Gets the time of the test suite start, in ms from the start of the
912 // UNIX epoch.
913 TimeInMillis start_timestamp() const { return start_timestamp_; }
914
915 // Returns the i-th test among all the tests. i can range from 0 to
916 // total_test_count() - 1. If i is not in that range, returns NULL.
917 const TestInfo* GetTestInfo(int i) const;
918
919 // Returns the TestResult that holds test properties recorded during
920 // execution of SetUpTestSuite and TearDownTestSuite.
921 const TestResult& ad_hoc_test_result() const { return ad_hoc_test_result_; }
922
923 private:
924 friend class Test;
925 friend class internal::UnitTestImpl;
926
927 // Gets the (mutable) vector of TestInfos in this TestSuite.
928 std::vector<TestInfo*>& test_info_list() { return test_info_list_; }
929
930 // Gets the (immutable) vector of TestInfos in this TestSuite.
931 const std::vector<TestInfo*>& test_info_list() const {
932 return test_info_list_;
933 }
934
935 // Returns the i-th test among all the tests. i can range from 0 to
936 // total_test_count() - 1. If i is not in that range, returns NULL.
937 TestInfo* GetMutableTestInfo(int i);
938
939 // Sets the should_run member.
940 void set_should_run(bool should) { should_run_ = should; }
941
942 // Adds a TestInfo to this test suite. Will delete the TestInfo upon
943 // destruction of the TestSuite object.
944 void AddTestInfo(TestInfo * test_info);
945
946 // Clears the results of all tests in this test suite.
947 void ClearResult();
948
949 // Clears the results of all tests in the given test suite.
950 static void ClearTestSuiteResult(TestSuite* test_suite) {
951 test_suite->ClearResult();
952 }
953
954 // Runs every test in this TestSuite.
955 void Run();
956
957 // Skips the execution of tests under this TestSuite
958 void Skip();
959
960 // Runs SetUpTestSuite() for this TestSuite. This wrapper is needed
961 // for catching exceptions thrown from SetUpTestSuite().
962 void RunSetUpTestSuite() {
963 if (set_up_tc_ != nullptr) {
964 (*set_up_tc_)();
965 }
966 }
967
968 // Runs TearDownTestSuite() for this TestSuite. This wrapper is
969 // needed for catching exceptions thrown from TearDownTestSuite().
970 void RunTearDownTestSuite() {
971 if (tear_down_tc_ != nullptr) {
972 (*tear_down_tc_)();
973 }
974 }
975
976 // Returns true if and only if test passed.
977 static bool TestPassed(const TestInfo* test_info) {
978 return test_info->should_run() && test_info->result()->Passed();
979 }
980
981 // Returns true if and only if test skipped.
982 static bool TestSkipped(const TestInfo* test_info) {
983 return test_info->should_run() && test_info->result()->Skipped();
984 }
985
986 // Returns true if and only if test failed.
987 static bool TestFailed(const TestInfo* test_info) {
988 return test_info->should_run() && test_info->result()->Failed();
989 }
990
991 // Returns true if and only if the test is disabled and will be reported in
992 // the XML report.
993 static bool TestReportableDisabled(const TestInfo* test_info) {
994 return test_info->is_reportable() && test_info->is_disabled_;
995 }
996
997 // Returns true if and only if test is disabled.
998 static bool TestDisabled(const TestInfo* test_info) {
999 return test_info->is_disabled_;
1000 }
1001
1002 // Returns true if and only if this test will appear in the XML report.
1003 static bool TestReportable(const TestInfo* test_info) {
1004 return test_info->is_reportable();
1005 }
1006
1007 // Returns true if the given test should run.
1008 static bool ShouldRunTest(const TestInfo* test_info) {
1009 return test_info->should_run();
1010 }
1011
1012 // Shuffles the tests in this test suite.
1013 void ShuffleTests(internal::Random* random);
1014
1015 // Restores the test order to before the first shuffle.
1016 void UnshuffleTests();
1017
1018 // Name of the test suite.
1019 std::string name_;
1020 // Name of the parameter type, or NULL if this is not a typed or a
1021 // type-parameterized test.
1022 const std::unique_ptr<const ::std::string> type_param_;
1023 // The vector of TestInfos in their original order. It owns the
1024 // elements in the vector.
1025 std::vector<TestInfo*> test_info_list_;
1026 // Provides a level of indirection for the test list to allow easy
1027 // shuffling and restoring the test order. The i-th element in this
1028 // vector is the index of the i-th test in the shuffled test list.
1029 std::vector<int> test_indices_;
1030 // Pointer to the function that sets up the test suite.
1031 internal::SetUpTestSuiteFunc set_up_tc_;
1032 // Pointer to the function that tears down the test suite.
1033 internal::TearDownTestSuiteFunc tear_down_tc_;
1034 // True if and only if any test in this test suite should run.
1035 bool should_run_;
1036 // The start time, in milliseconds since UNIX Epoch.
1037 TimeInMillis start_timestamp_;
1038 // Elapsed time, in milliseconds.
1039 TimeInMillis elapsed_time_;
1040 // Holds test properties recorded during execution of SetUpTestSuite and
1041 // TearDownTestSuite.
1042 TestResult ad_hoc_test_result_;
1043
1044 // We disallow copying TestSuites.
1045 GTEST_DISALLOW_COPY_AND_ASSIGN_(TestSuite);
1046};
1047
1048// An Environment object is capable of setting up and tearing down an
1049// environment. You should subclass this to define your own
1050// environment(s).
1051//
1052// An Environment object does the set-up and tear-down in virtual
1053// methods SetUp() and TearDown() instead of the constructor and the
1054// destructor, as:
1055//
1056// 1. You cannot safely throw from a destructor. This is a problem
1057// as in some cases Google Test is used where exceptions are enabled, and
1058// we may want to implement ASSERT_* using exceptions where they are
1059// available.
1060// 2. You cannot use ASSERT_* directly in a constructor or
1061// destructor.
1062class Environment {
1063 public:
1064 // The d'tor is virtual as we need to subclass Environment.
1065 virtual ~Environment() {}
1066
1067 // Override this to define how to set up the environment.
1068 virtual void SetUp() {}
1069
1070 // Override this to define how to tear down the environment.
1071 virtual void TearDown() {}
1072 private:
1073 // If you see an error about overriding the following function or
1074 // about it being private, you have mis-spelled SetUp() as Setup().
1075 struct Setup_should_be_spelled_SetUp {};
1076 virtual Setup_should_be_spelled_SetUp* Setup() { return nullptr; }
1077};
1078
1079#if GTEST_HAS_EXCEPTIONS
1080
1081// Exception which can be thrown from TestEventListener::OnTestPartResult.
1082class GTEST_API_ AssertionException
1083 : public internal::GoogleTestFailureException {
1084 public:
1085 explicit AssertionException(const TestPartResult& result)
1086 : GoogleTestFailureException(result) {}
1087};
1088
1089#endif // GTEST_HAS_EXCEPTIONS
1090
1091// The interface for tracing execution of tests. The methods are organized in
1092// the order the corresponding events are fired.
1093class TestEventListener {
1094 public:
1095 virtual ~TestEventListener() {}
1096
1097 // Fired before any test activity starts.
1098 virtual void OnTestProgramStart(const UnitTest& unit_test) = 0;
1099
1100 // Fired before each iteration of tests starts. There may be more than
1101 // one iteration if GTEST_FLAG(repeat) is set. iteration is the iteration
1102 // index, starting from 0.
1103 virtual void OnTestIterationStart(const UnitTest& unit_test,
1104 int iteration) = 0;
1105
1106 // Fired before environment set-up for each iteration of tests starts.
1107 virtual void OnEnvironmentsSetUpStart(const UnitTest& unit_test) = 0;
1108
1109 // Fired after environment set-up for each iteration of tests ends.
1110 virtual void OnEnvironmentsSetUpEnd(const UnitTest& unit_test) = 0;
1111
1112 // Fired before the test suite starts.
1113 virtual void OnTestSuiteStart(const TestSuite& /*test_suite*/) {}
1114
1115 // Legacy API is deprecated but still available
1116#ifndef GTEST_REMOVE_LEGACY_TEST_CASEAPI_
1117 virtual void OnTestCaseStart(const TestCase& /*test_case*/) {}
1118#endif // GTEST_REMOVE_LEGACY_TEST_CASEAPI_
1119
1120 // Fired before the test starts.
1121 virtual void OnTestStart(const TestInfo& test_info) = 0;
1122
1123 // Fired after a failed assertion or a SUCCEED() invocation.
1124 // If you want to throw an exception from this function to skip to the next
1125 // TEST, it must be AssertionException defined above, or inherited from it.
1126 virtual void OnTestPartResult(const TestPartResult& test_part_result) = 0;
1127
1128 // Fired after the test ends.
1129 virtual void OnTestEnd(const TestInfo& test_info) = 0;
1130
1131 // Fired after the test suite ends.
1132 virtual void OnTestSuiteEnd(const TestSuite& /*test_suite*/) {}
1133
1134// Legacy API is deprecated but still available
1135#ifndef GTEST_REMOVE_LEGACY_TEST_CASEAPI_
1136 virtual void OnTestCaseEnd(const TestCase& /*test_case*/) {}
1137#endif // GTEST_REMOVE_LEGACY_TEST_CASEAPI_
1138
1139 // Fired before environment tear-down for each iteration of tests starts.
1140 virtual void OnEnvironmentsTearDownStart(const UnitTest& unit_test) = 0;
1141
1142 // Fired after environment tear-down for each iteration of tests ends.
1143 virtual void OnEnvironmentsTearDownEnd(const UnitTest& unit_test) = 0;
1144
1145 // Fired after each iteration of tests finishes.
1146 virtual void OnTestIterationEnd(const UnitTest& unit_test,
1147 int iteration) = 0;
1148
1149 // Fired after all test activities have ended.
1150 virtual void OnTestProgramEnd(const UnitTest& unit_test) = 0;
1151};
1152
1153// The convenience class for users who need to override just one or two
1154// methods and are not concerned that a possible change to a signature of
1155// the methods they override will not be caught during the build. For
1156// comments about each method please see the definition of TestEventListener
1157// above.
1158class EmptyTestEventListener : public TestEventListener {
1159 public:
1160 void OnTestProgramStart(const UnitTest& /*unit_test*/) override {}
1161 void OnTestIterationStart(const UnitTest& /*unit_test*/,
1162 int /*iteration*/) override {}
1163 void OnEnvironmentsSetUpStart(const UnitTest& /*unit_test*/) override {}
1164 void OnEnvironmentsSetUpEnd(const UnitTest& /*unit_test*/) override {}
1165 void OnTestSuiteStart(const TestSuite& /*test_suite*/) override {}
1166// Legacy API is deprecated but still available
1167#ifndef GTEST_REMOVE_LEGACY_TEST_CASEAPI_
1168 void OnTestCaseStart(const TestCase& /*test_case*/) override {}
1169#endif // GTEST_REMOVE_LEGACY_TEST_CASEAPI_
1170
1171 void OnTestStart(const TestInfo& /*test_info*/) override {}
1172 void OnTestPartResult(const TestPartResult& /*test_part_result*/) override {}
1173 void OnTestEnd(const TestInfo& /*test_info*/) override {}
1174 void OnTestSuiteEnd(const TestSuite& /*test_suite*/) override {}
1175#ifndef GTEST_REMOVE_LEGACY_TEST_CASEAPI_
1176 void OnTestCaseEnd(const TestCase& /*test_case*/) override {}
1177#endif // GTEST_REMOVE_LEGACY_TEST_CASEAPI_
1178
1179 void OnEnvironmentsTearDownStart(const UnitTest& /*unit_test*/) override {}
1180 void OnEnvironmentsTearDownEnd(const UnitTest& /*unit_test*/) override {}
1181 void OnTestIterationEnd(const UnitTest& /*unit_test*/,
1182 int /*iteration*/) override {}
1183 void OnTestProgramEnd(const UnitTest& /*unit_test*/) override {}
1184};
1185
1186// TestEventListeners lets users add listeners to track events in Google Test.
1187class GTEST_API_ TestEventListeners {
1188 public:
1189 TestEventListeners();
1190 ~TestEventListeners();
1191
1192 // Appends an event listener to the end of the list. Google Test assumes
1193 // the ownership of the listener (i.e. it will delete the listener when
1194 // the test program finishes).
1195 void Append(TestEventListener* listener);
1196
1197 // Removes the given event listener from the list and returns it. It then
1198 // becomes the caller's responsibility to delete the listener. Returns
1199 // NULL if the listener is not found in the list.
1200 TestEventListener* Release(TestEventListener* listener);
1201
1202 // Returns the standard listener responsible for the default console
1203 // output. Can be removed from the listeners list to shut down default
1204 // console output. Note that removing this object from the listener list
1205 // with Release transfers its ownership to the caller and makes this
1206 // function return NULL the next time.
1207 TestEventListener* default_result_printer() const {
1208 return default_result_printer_;
1209 }
1210
1211 // Returns the standard listener responsible for the default XML output
1212 // controlled by the --gtest_output=xml flag. Can be removed from the
1213 // listeners list by users who want to shut down the default XML output
1214 // controlled by this flag and substitute it with custom one. Note that
1215 // removing this object from the listener list with Release transfers its
1216 // ownership to the caller and makes this function return NULL the next
1217 // time.
1218 TestEventListener* default_xml_generator() const {
1219 return default_xml_generator_;
1220 }
1221
1222 private:
1223 friend class TestSuite;
1224 friend class TestInfo;
1225 friend class internal::DefaultGlobalTestPartResultReporter;
1226 friend class internal::NoExecDeathTest;
1227 friend class internal::TestEventListenersAccessor;
1228 friend class internal::UnitTestImpl;
1229
1230 // Returns repeater that broadcasts the TestEventListener events to all
1231 // subscribers.
1232 TestEventListener* repeater();
1233
1234 // Sets the default_result_printer attribute to the provided listener.
1235 // The listener is also added to the listener list and previous
1236 // default_result_printer is removed from it and deleted. The listener can
1237 // also be NULL in which case it will not be added to the list. Does
1238 // nothing if the previous and the current listener objects are the same.
1239 void SetDefaultResultPrinter(TestEventListener* listener);
1240
1241 // Sets the default_xml_generator attribute to the provided listener. The
1242 // listener is also added to the listener list and previous
1243 // default_xml_generator is removed from it and deleted. The listener can
1244 // also be NULL in which case it will not be added to the list. Does
1245 // nothing if the previous and the current listener objects are the same.
1246 void SetDefaultXmlGenerator(TestEventListener* listener);
1247
1248 // Controls whether events will be forwarded by the repeater to the
1249 // listeners in the list.
1250 bool EventForwardingEnabled() const;
1251 void SuppressEventForwarding();
1252
1253 // The actual list of listeners.
1254 internal::TestEventRepeater* repeater_;
1255 // Listener responsible for the standard result output.
1256 TestEventListener* default_result_printer_;
1257 // Listener responsible for the creation of the XML output file.
1258 TestEventListener* default_xml_generator_;
1259
1260 // We disallow copying TestEventListeners.
1261 GTEST_DISALLOW_COPY_AND_ASSIGN_(TestEventListeners);
1262};
1263
1264// A UnitTest consists of a vector of TestSuites.
1265//
1266// This is a singleton class. The only instance of UnitTest is
1267// created when UnitTest::GetInstance() is first called. This
1268// instance is never deleted.
1269//
1270// UnitTest is not copyable.
1271//
1272// This class is thread-safe as long as the methods are called
1273// according to their specification.
1274class GTEST_API_ UnitTest {
1275 public:
1276 // Gets the singleton UnitTest object. The first time this method
1277 // is called, a UnitTest object is constructed and returned.
1278 // Consecutive calls will return the same object.
1279 static UnitTest* GetInstance();
1280
1281 // Runs all tests in this UnitTest object and prints the result.
1282 // Returns 0 if successful, or 1 otherwise.
1283 //
1284 // This method can only be called from the main thread.
1285 //
1286 // INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM.
1287 int Run() GTEST_MUST_USE_RESULT_;
1288
1289 // Returns the working directory when the first TEST() or TEST_F()
1290 // was executed. The UnitTest object owns the string.
1291 const char* original_working_dir() const;
1292
1293 // Returns the TestSuite object for the test that's currently running,
1294 // or NULL if no test is running.
1295 const TestSuite* current_test_suite() const GTEST_LOCK_EXCLUDED_(mutex_);
1296
1297// Legacy API is still available but deprecated
1298#ifndef GTEST_REMOVE_LEGACY_TEST_CASEAPI_
1299 const TestCase* current_test_case() const GTEST_LOCK_EXCLUDED_(mutex_);
1300#endif
1301
1302 // Returns the TestInfo object for the test that's currently running,
1303 // or NULL if no test is running.
1304 const TestInfo* current_test_info() const
1305 GTEST_LOCK_EXCLUDED_(mutex_);
1306
1307 // Returns the random seed used at the start of the current test run.
1308 int random_seed() const;
1309
1310 // Returns the ParameterizedTestSuiteRegistry object used to keep track of
1311 // value-parameterized tests and instantiate and register them.
1312 //
1313 // INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM.
1314 internal::ParameterizedTestSuiteRegistry& parameterized_test_registry()
1315 GTEST_LOCK_EXCLUDED_(mutex_);
1316
1317 // Gets the number of successful test suites.
1318 int successful_test_suite_count() const;
1319
1320 // Gets the number of failed test suites.
1321 int failed_test_suite_count() const;
1322
1323 // Gets the number of all test suites.
1324 int total_test_suite_count() const;
1325
1326 // Gets the number of all test suites that contain at least one test
1327 // that should run.
1328 int test_suite_to_run_count() const;
1329
1330 // Legacy API is deprecated but still available
1331#ifndef GTEST_REMOVE_LEGACY_TEST_CASEAPI_
1332 int successful_test_case_count() const;
1333 int failed_test_case_count() const;
1334 int total_test_case_count() const;
1335 int test_case_to_run_count() const;
1336#endif // GTEST_REMOVE_LEGACY_TEST_CASEAPI_
1337
1338 // Gets the number of successful tests.
1339 int successful_test_count() const;
1340
1341 // Gets the number of skipped tests.
1342 int skipped_test_count() const;
1343
1344 // Gets the number of failed tests.
1345 int failed_test_count() const;
1346
1347 // Gets the number of disabled tests that will be reported in the XML report.
1348 int reportable_disabled_test_count() const;
1349
1350 // Gets the number of disabled tests.
1351 int disabled_test_count() const;
1352
1353 // Gets the number of tests to be printed in the XML report.
1354 int reportable_test_count() const;
1355
1356 // Gets the number of all tests.
1357 int total_test_count() const;
1358
1359 // Gets the number of tests that should run.
1360 int test_to_run_count() const;
1361
1362 // Gets the time of the test program start, in ms from the start of the
1363 // UNIX epoch.
1364 TimeInMillis start_timestamp() const;
1365
1366 // Gets the elapsed time, in milliseconds.
1367 TimeInMillis elapsed_time() const;
1368
1369 // Returns true if and only if the unit test passed (i.e. all test suites
1370 // passed).
1371 bool Passed() const;
1372
1373 // Returns true if and only if the unit test failed (i.e. some test suite
1374 // failed or something outside of all tests failed).
1375 bool Failed() const;
1376
1377 // Gets the i-th test suite among all the test suites. i can range from 0 to
1378 // total_test_suite_count() - 1. If i is not in that range, returns NULL.
1379 const TestSuite* GetTestSuite(int i) const;
1380
1381// Legacy API is deprecated but still available
1382#ifndef GTEST_REMOVE_LEGACY_TEST_CASEAPI_
1383 const TestCase* GetTestCase(int i) const;
1384#endif // GTEST_REMOVE_LEGACY_TEST_CASEAPI_
1385
1386 // Returns the TestResult containing information on test failures and
1387 // properties logged outside of individual test suites.
1388 const TestResult& ad_hoc_test_result() const;
1389
1390 // Returns the list of event listeners that can be used to track events
1391 // inside Google Test.
1392 TestEventListeners& listeners();
1393
1394 private:
1395 // Registers and returns a global test environment. When a test
1396 // program is run, all global test environments will be set-up in
1397 // the order they were registered. After all tests in the program
1398 // have finished, all global test environments will be torn-down in
1399 // the *reverse* order they were registered.
1400 //
1401 // The UnitTest object takes ownership of the given environment.
1402 //
1403 // This method can only be called from the main thread.
1404 Environment* AddEnvironment(Environment* env);
1405
1406 // Adds a TestPartResult to the current TestResult object. All
1407 // Google Test assertion macros (e.g. ASSERT_TRUE, EXPECT_EQ, etc)
1408 // eventually call this to report their results. The user code
1409 // should use the assertion macros instead of calling this directly.
1410 void AddTestPartResult(TestPartResult::Type result_type,
1411 const char* file_name,
1412 int line_number,
1413 const std::string& message,
1414 const std::string& os_stack_trace)
1415 GTEST_LOCK_EXCLUDED_(mutex_);
1416
1417 // Adds a TestProperty to the current TestResult object when invoked from
1418 // inside a test, to current TestSuite's ad_hoc_test_result_ when invoked
1419 // from SetUpTestSuite or TearDownTestSuite, or to the global property set
1420 // when invoked elsewhere. If the result already contains a property with
1421 // the same key, the value will be updated.
1422 void RecordProperty(const std::string& key, const std::string& value);
1423
1424 // Gets the i-th test suite among all the test suites. i can range from 0 to
1425 // total_test_suite_count() - 1. If i is not in that range, returns NULL.
1426 TestSuite* GetMutableTestSuite(int i);
1427
1428 // Accessors for the implementation object.
1429 internal::UnitTestImpl* impl() { return impl_; }
1430 const internal::UnitTestImpl* impl() const { return impl_; }
1431
1432 // These classes and functions are friends as they need to access private
1433 // members of UnitTest.
1434 friend class ScopedTrace;
1435 friend class Test;
1436 friend class internal::AssertHelper;
1437 friend class internal::StreamingListenerTest;
1438 friend class internal::UnitTestRecordPropertyTestHelper;
1439 friend Environment* AddGlobalTestEnvironment(Environment* env);
1440 friend std::set<std::string>* internal::GetIgnoredParameterizedTestSuites();
1441 friend internal::UnitTestImpl* internal::GetUnitTestImpl();
1442 friend void internal::ReportFailureInUnknownLocation(
1443 TestPartResult::Type result_type,
1444 const std::string& message);
1445
1446 // Creates an empty UnitTest.
1447 UnitTest();
1448
1449 // D'tor
1450 virtual ~UnitTest();
1451
1452 // Pushes a trace defined by SCOPED_TRACE() on to the per-thread
1453 // Google Test trace stack.
1454 void PushGTestTrace(const internal::TraceInfo& trace)
1455 GTEST_LOCK_EXCLUDED_(mutex_);
1456
1457 // Pops a trace from the per-thread Google Test trace stack.
1458 void PopGTestTrace()
1459 GTEST_LOCK_EXCLUDED_(mutex_);
1460
1461 // Protects mutable state in *impl_. This is mutable as some const
1462 // methods need to lock it too.
1463 mutable internal::Mutex mutex_;
1464
1465 // Opaque implementation object. This field is never changed once
1466 // the object is constructed. We don't mark it as const here, as
1467 // doing so will cause a warning in the constructor of UnitTest.
1468 // Mutable state in *impl_ is protected by mutex_.
1469 internal::UnitTestImpl* impl_;
1470
1471 // We disallow copying UnitTest.
1472 GTEST_DISALLOW_COPY_AND_ASSIGN_(UnitTest);
1473};
1474
1475// A convenient wrapper for adding an environment for the test
1476// program.
1477//
1478// You should call this before RUN_ALL_TESTS() is called, probably in
1479// main(). If you use gtest_main, you need to call this before main()
1480// starts for it to take effect. For example, you can define a global
1481// variable like this:
1482//
1483// testing::Environment* const foo_env =
1484// testing::AddGlobalTestEnvironment(new FooEnvironment);
1485//
1486// However, we strongly recommend you to write your own main() and
1487// call AddGlobalTestEnvironment() there, as relying on initialization
1488// of global variables makes the code harder to read and may cause
1489// problems when you register multiple environments from different
1490// translation units and the environments have dependencies among them
1491// (remember that the compiler doesn't guarantee the order in which
1492// global variables from different translation units are initialized).
1493inline Environment* AddGlobalTestEnvironment(Environment* env) {
1494 return UnitTest::GetInstance()->AddEnvironment(env);
1495}
1496
1497// Initializes Google Test. This must be called before calling
1498// RUN_ALL_TESTS(). In particular, it parses a command line for the
1499// flags that Google Test recognizes. Whenever a Google Test flag is
1500// seen, it is removed from argv, and *argc is decremented.
1501//
1502// No value is returned. Instead, the Google Test flag variables are
1503// updated.
1504//
1505// Calling the function for the second time has no user-visible effect.
1506GTEST_API_ void InitGoogleTest(int* argc, char** argv);
1507
1508// This overloaded version can be used in Windows programs compiled in
1509// UNICODE mode.
1510GTEST_API_ void InitGoogleTest(int* argc, wchar_t** argv);
1511
1512// This overloaded version can be used on Arduino/embedded platforms where
1513// there is no argc/argv.
1514GTEST_API_ void InitGoogleTest();
1515
1516namespace internal {
1517
1518// Separate the error generating code from the code path to reduce the stack
1519// frame size of CmpHelperEQ. This helps reduce the overhead of some sanitizers
1520// when calling EXPECT_* in a tight loop.
1521template <typename T1, typename T2>
1522AssertionResult CmpHelperEQFailure(const char* lhs_expression,
1523 const char* rhs_expression,
1524 const T1& lhs, const T2& rhs) {
1525 return EqFailure(lhs_expression,
1526 rhs_expression,
1527 FormatForComparisonFailureMessage(lhs, rhs),
1528 FormatForComparisonFailureMessage(rhs, lhs),
1529 false);
1530}
1531
1532// This block of code defines operator==/!=
1533// to block lexical scope lookup.
1534// It prevents using invalid operator==/!= defined at namespace scope.
1535struct faketype {};
1536inline bool operator==(faketype, faketype) { return true; }
1537inline bool operator!=(faketype, faketype) { return false; }
1538
1539// The helper function for {ASSERT|EXPECT}_EQ.
1540template <typename T1, typename T2>
1541AssertionResult CmpHelperEQ(const char* lhs_expression,
1542 const char* rhs_expression,
1543 const T1& lhs,
1544 const T2& rhs) {
1545 if (lhs == rhs) {
1546 return AssertionSuccess();
1547 }
1548
1549 return CmpHelperEQFailure(lhs_expression, rhs_expression, lhs, rhs);
1550}
1551
1552// With this overloaded version, we allow anonymous enums to be used
1553// in {ASSERT|EXPECT}_EQ when compiled with gcc 4, as anonymous enums
1554// can be implicitly cast to BiggestInt.
1555GTEST_API_ AssertionResult CmpHelperEQ(const char* lhs_expression,
1556 const char* rhs_expression,
1557 BiggestInt lhs,
1558 BiggestInt rhs);
1559
1560class EqHelper {
1561 public:
1562 // This templatized version is for the general case.
1563 template <
1564 typename T1, typename T2,
1565 // Disable this overload for cases where one argument is a pointer
1566 // and the other is the null pointer constant.
1567 typename std::enable_if<!std::is_integral<T1>::value ||
1568 !std::is_pointer<T2>::value>::type* = nullptr>
1569 static AssertionResult Compare(const char* lhs_expression,
1570 const char* rhs_expression, const T1& lhs,
1571 const T2& rhs) {
1572 return CmpHelperEQ(lhs_expression, rhs_expression, lhs, rhs);
1573 }
1574
1575 // With this overloaded version, we allow anonymous enums to be used
1576 // in {ASSERT|EXPECT}_EQ when compiled with gcc 4, as anonymous
1577 // enums can be implicitly cast to BiggestInt.
1578 //
1579 // Even though its body looks the same as the above version, we
1580 // cannot merge the two, as it will make anonymous enums unhappy.
1581 static AssertionResult Compare(const char* lhs_expression,
1582 const char* rhs_expression,
1583 BiggestInt lhs,
1584 BiggestInt rhs) {
1585 return CmpHelperEQ(lhs_expression, rhs_expression, lhs, rhs);
1586 }
1587
1588 template <typename T>
1589 static AssertionResult Compare(
1590 const char* lhs_expression, const char* rhs_expression,
1591 // Handle cases where '0' is used as a null pointer literal.
1592 std::nullptr_t /* lhs */, T* rhs) {
1593 // We already know that 'lhs' is a null pointer.
1594 return CmpHelperEQ(lhs_expression, rhs_expression, static_cast<T*>(nullptr),
1595 rhs);
1596 }
1597};
1598
1599// Separate the error generating code from the code path to reduce the stack
1600// frame size of CmpHelperOP. This helps reduce the overhead of some sanitizers
1601// when calling EXPECT_OP in a tight loop.
1602template <typename T1, typename T2>
1603AssertionResult CmpHelperOpFailure(const char* expr1, const char* expr2,
1604 const T1& val1, const T2& val2,
1605 const char* op) {
1606 return AssertionFailure()
1607 << "Expected: (" << expr1 << ") " << op << " (" << expr2
1608 << "), actual: " << FormatForComparisonFailureMessage(val1, val2)
1609 << " vs " << FormatForComparisonFailureMessage(val2, val1);
1610}
1611
1612// A macro for implementing the helper functions needed to implement
1613// ASSERT_?? and EXPECT_??. It is here just to avoid copy-and-paste
1614// of similar code.
1615//
1616// For each templatized helper function, we also define an overloaded
1617// version for BiggestInt in order to reduce code bloat and allow
1618// anonymous enums to be used with {ASSERT|EXPECT}_?? when compiled
1619// with gcc 4.
1620//
1621// INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM.
1622
1623#define GTEST_IMPL_CMP_HELPER_(op_name, op)\
1624template <typename T1, typename T2>\
1625AssertionResult CmpHelper##op_name(const char* expr1, const char* expr2, \
1626 const T1& val1, const T2& val2) {\
1627 if (val1 op val2) {\
1628 return AssertionSuccess();\
1629 } else {\
1630 return CmpHelperOpFailure(expr1, expr2, val1, val2, #op);\
1631 }\
1632}\
1633GTEST_API_ AssertionResult CmpHelper##op_name(\
1634 const char* expr1, const char* expr2, BiggestInt val1, BiggestInt val2)
1635
1636// INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM.
1637
1638// Implements the helper function for {ASSERT|EXPECT}_NE
1639GTEST_IMPL_CMP_HELPER_(NE, !=);
1640// Implements the helper function for {ASSERT|EXPECT}_LE
1641GTEST_IMPL_CMP_HELPER_(LE, <=);
1642// Implements the helper function for {ASSERT|EXPECT}_LT
1643GTEST_IMPL_CMP_HELPER_(LT, <);
1644// Implements the helper function for {ASSERT|EXPECT}_GE
1645GTEST_IMPL_CMP_HELPER_(GE, >=);
1646// Implements the helper function for {ASSERT|EXPECT}_GT
1647GTEST_IMPL_CMP_HELPER_(GT, >);
1648
1649#undef GTEST_IMPL_CMP_HELPER_
1650
1651// The helper function for {ASSERT|EXPECT}_STREQ.
1652//
1653// INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM.
1654GTEST_API_ AssertionResult CmpHelperSTREQ(const char* s1_expression,
1655 const char* s2_expression,
1656 const char* s1,
1657 const char* s2);
1658
1659// The helper function for {ASSERT|EXPECT}_STRCASEEQ.
1660//
1661// INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM.
1662GTEST_API_ AssertionResult CmpHelperSTRCASEEQ(const char* s1_expression,
1663 const char* s2_expression,
1664 const char* s1,
1665 const char* s2);
1666
1667// The helper function for {ASSERT|EXPECT}_STRNE.
1668//
1669// INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM.
1670GTEST_API_ AssertionResult CmpHelperSTRNE(const char* s1_expression,
1671 const char* s2_expression,
1672 const char* s1,
1673 const char* s2);
1674
1675// The helper function for {ASSERT|EXPECT}_STRCASENE.
1676//
1677// INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM.
1678GTEST_API_ AssertionResult CmpHelperSTRCASENE(const char* s1_expression,
1679 const char* s2_expression,
1680 const char* s1,
1681 const char* s2);
1682
1683
1684// Helper function for *_STREQ on wide strings.
1685//
1686// INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM.
1687GTEST_API_ AssertionResult CmpHelperSTREQ(const char* s1_expression,
1688 const char* s2_expression,
1689 const wchar_t* s1,
1690 const wchar_t* s2);
1691
1692// Helper function for *_STRNE on wide strings.
1693//
1694// INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM.
1695GTEST_API_ AssertionResult CmpHelperSTRNE(const char* s1_expression,
1696 const char* s2_expression,
1697 const wchar_t* s1,
1698 const wchar_t* s2);
1699
1700} // namespace internal
1701
1702// IsSubstring() and IsNotSubstring() are intended to be used as the
1703// first argument to {EXPECT,ASSERT}_PRED_FORMAT2(), not by
1704// themselves. They check whether needle is a substring of haystack
1705// (NULL is considered a substring of itself only), and return an
1706// appropriate error message when they fail.
1707//
1708// The {needle,haystack}_expr arguments are the stringified
1709// expressions that generated the two real arguments.
1710GTEST_API_ AssertionResult IsSubstring(
1711 const char* needle_expr, const char* haystack_expr,
1712 const char* needle, const char* haystack);
1713GTEST_API_ AssertionResult IsSubstring(
1714 const char* needle_expr, const char* haystack_expr,
1715 const wchar_t* needle, const wchar_t* haystack);
1716GTEST_API_ AssertionResult IsNotSubstring(
1717 const char* needle_expr, const char* haystack_expr,
1718 const char* needle, const char* haystack);
1719GTEST_API_ AssertionResult IsNotSubstring(
1720 const char* needle_expr, const char* haystack_expr,
1721 const wchar_t* needle, const wchar_t* haystack);
1722GTEST_API_ AssertionResult IsSubstring(
1723 const char* needle_expr, const char* haystack_expr,
1724 const ::std::string& needle, const ::std::string& haystack);
1725GTEST_API_ AssertionResult IsNotSubstring(
1726 const char* needle_expr, const char* haystack_expr,
1727 const ::std::string& needle, const ::std::string& haystack);
1728
1729#if GTEST_HAS_STD_WSTRING
1730GTEST_API_ AssertionResult IsSubstring(
1731 const char* needle_expr, const char* haystack_expr,
1732 const ::std::wstring& needle, const ::std::wstring& haystack);
1733GTEST_API_ AssertionResult IsNotSubstring(
1734 const char* needle_expr, const char* haystack_expr,
1735 const ::std::wstring& needle, const ::std::wstring& haystack);
1736#endif // GTEST_HAS_STD_WSTRING
1737
1738namespace internal {
1739
1740// Helper template function for comparing floating-points.
1741//
1742// Template parameter:
1743//
1744// RawType: the raw floating-point type (either float or double)
1745//
1746// INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM.
1747template <typename RawType>
1748AssertionResult CmpHelperFloatingPointEQ(const char* lhs_expression,
1749 const char* rhs_expression,
1750 RawType lhs_value,
1751 RawType rhs_value) {
1752 const FloatingPoint<RawType> lhs(lhs_value), rhs(rhs_value);
1753
1754 if (lhs.AlmostEquals(rhs)) {
1755 return AssertionSuccess();
1756 }
1757
1758 ::std::stringstream lhs_ss;
1759 lhs_ss << std::setprecision(std::numeric_limits<RawType>::digits10 + 2)
1760 << lhs_value;
1761
1762 ::std::stringstream rhs_ss;
1763 rhs_ss << std::setprecision(std::numeric_limits<RawType>::digits10 + 2)
1764 << rhs_value;
1765
1766 return EqFailure(lhs_expression,
1767 rhs_expression,
1768 StringStreamToString(&lhs_ss),
1769 StringStreamToString(&rhs_ss),
1770 false);
1771}
1772
1773// Helper function for implementing ASSERT_NEAR.
1774//
1775// INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM.
1776GTEST_API_ AssertionResult DoubleNearPredFormat(const char* expr1,
1777 const char* expr2,
1778 const char* abs_error_expr,
1779 double val1,
1780 double val2,
1781 double abs_error);
1782
1783// INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE.
1784// A class that enables one to stream messages to assertion macros
1785class GTEST_API_ AssertHelper {
1786 public:
1787 // Constructor.
1788 AssertHelper(TestPartResult::Type type,
1789 const char* file,
1790 int line,
1791 const char* message);
1792 ~AssertHelper();
1793
1794 // Message assignment is a semantic trick to enable assertion
1795 // streaming; see the GTEST_MESSAGE_ macro below.
1796 void operator=(const Message& message) const;
1797
1798 private:
1799 // We put our data in a struct so that the size of the AssertHelper class can
1800 // be as small as possible. This is important because gcc is incapable of
1801 // re-using stack space even for temporary variables, so every EXPECT_EQ
1802 // reserves stack space for another AssertHelper.
1803 struct AssertHelperData {
1804 AssertHelperData(TestPartResult::Type t,
1805 const char* srcfile,
1806 int line_num,
1807 const char* msg)
1808 : type(t), file(srcfile), line(line_num), message(msg) { }
1809
1810 TestPartResult::Type const type;
1811 const char* const file;
1812 int const line;
1813 std::string const message;
1814
1815 private:
1816 GTEST_DISALLOW_COPY_AND_ASSIGN_(AssertHelperData);
1817 };
1818
1819 AssertHelperData* const data_;
1820
1821 GTEST_DISALLOW_COPY_AND_ASSIGN_(AssertHelper);
1822};
1823
1824} // namespace internal
1825
1826// The pure interface class that all value-parameterized tests inherit from.
1827// A value-parameterized class must inherit from both ::testing::Test and
1828// ::testing::WithParamInterface. In most cases that just means inheriting
1829// from ::testing::TestWithParam, but more complicated test hierarchies
1830// may need to inherit from Test and WithParamInterface at different levels.
1831//
1832// This interface has support for accessing the test parameter value via
1833// the GetParam() method.
1834//
1835// Use it with one of the parameter generator defining functions, like Range(),
1836// Values(), ValuesIn(), Bool(), and Combine().
1837//
1838// class FooTest : public ::testing::TestWithParam<int> {
1839// protected:
1840// FooTest() {
1841// // Can use GetParam() here.
1842// }
1843// ~FooTest() override {
1844// // Can use GetParam() here.
1845// }
1846// void SetUp() override {
1847// // Can use GetParam() here.
1848// }
1849// void TearDown override {
1850// // Can use GetParam() here.
1851// }
1852// };
1853// TEST_P(FooTest, DoesBar) {
1854// // Can use GetParam() method here.
1855// Foo foo;
1856// ASSERT_TRUE(foo.DoesBar(GetParam()));
1857// }
1858// INSTANTIATE_TEST_SUITE_P(OneToTenRange, FooTest, ::testing::Range(1, 10));
1859
1860template <typename T>
1861class WithParamInterface {
1862 public:
1863 typedef T ParamType;
1864 virtual ~WithParamInterface() {}
1865
1866 // The current parameter value. Is also available in the test fixture's
1867 // constructor.
1868 static const ParamType& GetParam() {
1869 GTEST_CHECK_(parameter_ != nullptr)
1870 << "GetParam() can only be called inside a value-parameterized test "
1871 << "-- did you intend to write TEST_P instead of TEST_F?";
1872 return *parameter_;
1873 }
1874
1875 private:
1876 // Sets parameter value. The caller is responsible for making sure the value
1877 // remains alive and unchanged throughout the current test.
1878 static void SetParam(const ParamType* parameter) {
1879 parameter_ = parameter;
1880 }
1881
1882 // Static value used for accessing parameter during a test lifetime.
1883 static const ParamType* parameter_;
1884
1885 // TestClass must be a subclass of WithParamInterface<T> and Test.
1886 template <class TestClass> friend class internal::ParameterizedTestFactory;
1887};
1888
1889template <typename T>
1890const T* WithParamInterface<T>::parameter_ = nullptr;
1891
1892// Most value-parameterized classes can ignore the existence of
1893// WithParamInterface, and can just inherit from ::testing::TestWithParam.
1894
1895template <typename T>
1896class TestWithParam : public Test, public WithParamInterface<T> {
1897};
1898
1899// Macros for indicating success/failure in test code.
1900
1901// Skips test in runtime.
1902// Skipping test aborts current function.
1903// Skipped tests are neither successful nor failed.
1904#define GTEST_SKIP() GTEST_SKIP_("")
1905
1906// ADD_FAILURE unconditionally adds a failure to the current test.
1907// SUCCEED generates a success - it doesn't automatically make the
1908// current test successful, as a test is only successful when it has
1909// no failure.
1910//
1911// EXPECT_* verifies that a certain condition is satisfied. If not,
1912// it behaves like ADD_FAILURE. In particular:
1913//
1914// EXPECT_TRUE verifies that a Boolean condition is true.
1915// EXPECT_FALSE verifies that a Boolean condition is false.
1916//
1917// FAIL and ASSERT_* are similar to ADD_FAILURE and EXPECT_*, except
1918// that they will also abort the current function on failure. People
1919// usually want the fail-fast behavior of FAIL and ASSERT_*, but those
1920// writing data-driven tests often find themselves using ADD_FAILURE
1921// and EXPECT_* more.
1922
1923// Generates a nonfatal failure with a generic message.
1924#define ADD_FAILURE() GTEST_NONFATAL_FAILURE_("Failed")
1925
1926// Generates a nonfatal failure at the given source file location with
1927// a generic message.
1928#define ADD_FAILURE_AT(file, line) \
1929 GTEST_MESSAGE_AT_(file, line, "Failed", \
1930 ::testing::TestPartResult::kNonFatalFailure)
1931
1932// Generates a fatal failure with a generic message.
1933#define GTEST_FAIL() GTEST_FATAL_FAILURE_("Failed")
1934
1935// Like GTEST_FAIL(), but at the given source file location.
1936#define GTEST_FAIL_AT(file, line) \
1937 GTEST_MESSAGE_AT_(file, line, "Failed", \
1938 ::testing::TestPartResult::kFatalFailure)
1939
1940// Define this macro to 1 to omit the definition of FAIL(), which is a
1941// generic name and clashes with some other libraries.
1942#if !GTEST_DONT_DEFINE_FAIL
1943# define FAIL() GTEST_FAIL()
1944#endif
1945
1946// Generates a success with a generic message.
1947#define GTEST_SUCCEED() GTEST_SUCCESS_("Succeeded")
1948
1949// Define this macro to 1 to omit the definition of SUCCEED(), which
1950// is a generic name and clashes with some other libraries.
1951#if !GTEST_DONT_DEFINE_SUCCEED
1952# define SUCCEED() GTEST_SUCCEED()
1953#endif
1954
1955// Macros for testing exceptions.
1956//
1957// * {ASSERT|EXPECT}_THROW(statement, expected_exception):
1958// Tests that the statement throws the expected exception.
1959// * {ASSERT|EXPECT}_NO_THROW(statement):
1960// Tests that the statement doesn't throw any exception.
1961// * {ASSERT|EXPECT}_ANY_THROW(statement):
1962// Tests that the statement throws an exception.
1963
1964#define EXPECT_THROW(statement, expected_exception) \
1965 GTEST_TEST_THROW_(statement, expected_exception, GTEST_NONFATAL_FAILURE_)
1966#define EXPECT_NO_THROW(statement) \
1967 GTEST_TEST_NO_THROW_(statement, GTEST_NONFATAL_FAILURE_)
1968#define EXPECT_ANY_THROW(statement) \
1969 GTEST_TEST_ANY_THROW_(statement, GTEST_NONFATAL_FAILURE_)
1970#define ASSERT_THROW(statement, expected_exception) \
1971 GTEST_TEST_THROW_(statement, expected_exception, GTEST_FATAL_FAILURE_)
1972#define ASSERT_NO_THROW(statement) \
1973 GTEST_TEST_NO_THROW_(statement, GTEST_FATAL_FAILURE_)
1974#define ASSERT_ANY_THROW(statement) \
1975 GTEST_TEST_ANY_THROW_(statement, GTEST_FATAL_FAILURE_)
1976
1977// Boolean assertions. Condition can be either a Boolean expression or an
1978// AssertionResult. For more information on how to use AssertionResult with
1979// these macros see comments on that class.
1980#define EXPECT_TRUE(condition) \
1981 GTEST_TEST_BOOLEAN_(condition, #condition, false, true, \
1982 GTEST_NONFATAL_FAILURE_)
1983#define EXPECT_FALSE(condition) \
1984 GTEST_TEST_BOOLEAN_(!(condition), #condition, true, false, \
1985 GTEST_NONFATAL_FAILURE_)
1986#define ASSERT_TRUE(condition) \
1987 GTEST_TEST_BOOLEAN_(condition, #condition, false, true, \
1988 GTEST_FATAL_FAILURE_)
1989#define ASSERT_FALSE(condition) \
1990 GTEST_TEST_BOOLEAN_(!(condition), #condition, true, false, \
1991 GTEST_FATAL_FAILURE_)
1992
1993// Macros for testing equalities and inequalities.
1994//
1995// * {ASSERT|EXPECT}_EQ(v1, v2): Tests that v1 == v2
1996// * {ASSERT|EXPECT}_NE(v1, v2): Tests that v1 != v2
1997// * {ASSERT|EXPECT}_LT(v1, v2): Tests that v1 < v2
1998// * {ASSERT|EXPECT}_LE(v1, v2): Tests that v1 <= v2
1999// * {ASSERT|EXPECT}_GT(v1, v2): Tests that v1 > v2
2000// * {ASSERT|EXPECT}_GE(v1, v2): Tests that v1 >= v2
2001//
2002// When they are not, Google Test prints both the tested expressions and
2003// their actual values. The values must be compatible built-in types,
2004// or you will get a compiler error. By "compatible" we mean that the
2005// values can be compared by the respective operator.
2006//
2007// Note:
2008//
2009// 1. It is possible to make a user-defined type work with
2010// {ASSERT|EXPECT}_??(), but that requires overloading the
2011// comparison operators and is thus discouraged by the Google C++
2012// Usage Guide. Therefore, you are advised to use the
2013// {ASSERT|EXPECT}_TRUE() macro to assert that two objects are
2014// equal.
2015//
2016// 2. The {ASSERT|EXPECT}_??() macros do pointer comparisons on
2017// pointers (in particular, C strings). Therefore, if you use it
2018// with two C strings, you are testing how their locations in memory
2019// are related, not how their content is related. To compare two C
2020// strings by content, use {ASSERT|EXPECT}_STR*().
2021//
2022// 3. {ASSERT|EXPECT}_EQ(v1, v2) is preferred to
2023// {ASSERT|EXPECT}_TRUE(v1 == v2), as the former tells you
2024// what the actual value is when it fails, and similarly for the
2025// other comparisons.
2026//
2027// 4. Do not depend on the order in which {ASSERT|EXPECT}_??()
2028// evaluate their arguments, which is undefined.
2029//
2030// 5. These macros evaluate their arguments exactly once.
2031//
2032// Examples:
2033//
2034// EXPECT_NE(Foo(), 5);
2035// EXPECT_EQ(a_pointer, NULL);
2036// ASSERT_LT(i, array_size);
2037// ASSERT_GT(records.size(), 0) << "There is no record left.";
2038
2039#define EXPECT_EQ(val1, val2) \
2040 EXPECT_PRED_FORMAT2(::testing::internal::EqHelper::Compare, val1, val2)
2041#define EXPECT_NE(val1, val2) \
2042 EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperNE, val1, val2)
2043#define EXPECT_LE(val1, val2) \
2044 EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperLE, val1, val2)
2045#define EXPECT_LT(val1, val2) \
2046 EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperLT, val1, val2)
2047#define EXPECT_GE(val1, val2) \
2048 EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperGE, val1, val2)
2049#define EXPECT_GT(val1, val2) \
2050 EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperGT, val1, val2)
2051
2052#define GTEST_ASSERT_EQ(val1, val2) \
2053 ASSERT_PRED_FORMAT2(::testing::internal::EqHelper::Compare, val1, val2)
2054#define GTEST_ASSERT_NE(val1, val2) \
2055 ASSERT_PRED_FORMAT2(::testing::internal::CmpHelperNE, val1, val2)
2056#define GTEST_ASSERT_LE(val1, val2) \
2057 ASSERT_PRED_FORMAT2(::testing::internal::CmpHelperLE, val1, val2)
2058#define GTEST_ASSERT_LT(val1, val2) \
2059 ASSERT_PRED_FORMAT2(::testing::internal::CmpHelperLT, val1, val2)
2060#define GTEST_ASSERT_GE(val1, val2) \
2061 ASSERT_PRED_FORMAT2(::testing::internal::CmpHelperGE, val1, val2)
2062#define GTEST_ASSERT_GT(val1, val2) \
2063 ASSERT_PRED_FORMAT2(::testing::internal::CmpHelperGT, val1, val2)
2064
2065// Define macro GTEST_DONT_DEFINE_ASSERT_XY to 1 to omit the definition of
2066// ASSERT_XY(), which clashes with some users' own code.
2067
2068#if !GTEST_DONT_DEFINE_ASSERT_EQ
2069# define ASSERT_EQ(val1, val2) GTEST_ASSERT_EQ(val1, val2)
2070#endif
2071
2072#if !GTEST_DONT_DEFINE_ASSERT_NE
2073# define ASSERT_NE(val1, val2) GTEST_ASSERT_NE(val1, val2)
2074#endif
2075
2076#if !GTEST_DONT_DEFINE_ASSERT_LE
2077# define ASSERT_LE(val1, val2) GTEST_ASSERT_LE(val1, val2)
2078#endif
2079
2080#if !GTEST_DONT_DEFINE_ASSERT_LT
2081# define ASSERT_LT(val1, val2) GTEST_ASSERT_LT(val1, val2)
2082#endif
2083
2084#if !GTEST_DONT_DEFINE_ASSERT_GE
2085# define ASSERT_GE(val1, val2) GTEST_ASSERT_GE(val1, val2)
2086#endif
2087
2088#if !GTEST_DONT_DEFINE_ASSERT_GT
2089# define ASSERT_GT(val1, val2) GTEST_ASSERT_GT(val1, val2)
2090#endif
2091
2092// C-string Comparisons. All tests treat NULL and any non-NULL string
2093// as different. Two NULLs are equal.
2094//
2095// * {ASSERT|EXPECT}_STREQ(s1, s2): Tests that s1 == s2
2096// * {ASSERT|EXPECT}_STRNE(s1, s2): Tests that s1 != s2
2097// * {ASSERT|EXPECT}_STRCASEEQ(s1, s2): Tests that s1 == s2, ignoring case
2098// * {ASSERT|EXPECT}_STRCASENE(s1, s2): Tests that s1 != s2, ignoring case
2099//
2100// For wide or narrow string objects, you can use the
2101// {ASSERT|EXPECT}_??() macros.
2102//
2103// Don't depend on the order in which the arguments are evaluated,
2104// which is undefined.
2105//
2106// These macros evaluate their arguments exactly once.
2107
2108#define EXPECT_STREQ(s1, s2) \
2109 EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperSTREQ, s1, s2)
2110#define EXPECT_STRNE(s1, s2) \
2111 EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperSTRNE, s1, s2)
2112#define EXPECT_STRCASEEQ(s1, s2) \
2113 EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperSTRCASEEQ, s1, s2)
2114#define EXPECT_STRCASENE(s1, s2)\
2115 EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperSTRCASENE, s1, s2)
2116
2117#define ASSERT_STREQ(s1, s2) \
2118 ASSERT_PRED_FORMAT2(::testing::internal::CmpHelperSTREQ, s1, s2)
2119#define ASSERT_STRNE(s1, s2) \
2120 ASSERT_PRED_FORMAT2(::testing::internal::CmpHelperSTRNE, s1, s2)
2121#define ASSERT_STRCASEEQ(s1, s2) \
2122 ASSERT_PRED_FORMAT2(::testing::internal::CmpHelperSTRCASEEQ, s1, s2)
2123#define ASSERT_STRCASENE(s1, s2)\
2124 ASSERT_PRED_FORMAT2(::testing::internal::CmpHelperSTRCASENE, s1, s2)
2125
2126// Macros for comparing floating-point numbers.
2127//
2128// * {ASSERT|EXPECT}_FLOAT_EQ(val1, val2):
2129// Tests that two float values are almost equal.
2130// * {ASSERT|EXPECT}_DOUBLE_EQ(val1, val2):
2131// Tests that two double values are almost equal.
2132// * {ASSERT|EXPECT}_NEAR(v1, v2, abs_error):
2133// Tests that v1 and v2 are within the given distance to each other.
2134//
2135// Google Test uses ULP-based comparison to automatically pick a default
2136// error bound that is appropriate for the operands. See the
2137// FloatingPoint template class in gtest-internal.h if you are
2138// interested in the implementation details.
2139
2140#define EXPECT_FLOAT_EQ(val1, val2)\
2141 EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperFloatingPointEQ<float>, \
2142 val1, val2)
2143
2144#define EXPECT_DOUBLE_EQ(val1, val2)\
2145 EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperFloatingPointEQ<double>, \
2146 val1, val2)
2147
2148#define ASSERT_FLOAT_EQ(val1, val2)\
2149 ASSERT_PRED_FORMAT2(::testing::internal::CmpHelperFloatingPointEQ<float>, \
2150 val1, val2)
2151
2152#define ASSERT_DOUBLE_EQ(val1, val2)\
2153 ASSERT_PRED_FORMAT2(::testing::internal::CmpHelperFloatingPointEQ<double>, \
2154 val1, val2)
2155
2156#define EXPECT_NEAR(val1, val2, abs_error)\
2157 EXPECT_PRED_FORMAT3(::testing::internal::DoubleNearPredFormat, \
2158 val1, val2, abs_error)
2159
2160#define ASSERT_NEAR(val1, val2, abs_error)\
2161 ASSERT_PRED_FORMAT3(::testing::internal::DoubleNearPredFormat, \
2162 val1, val2, abs_error)
2163
2164// These predicate format functions work on floating-point values, and
2165// can be used in {ASSERT|EXPECT}_PRED_FORMAT2*(), e.g.
2166//
2167// EXPECT_PRED_FORMAT2(testing::DoubleLE, Foo(), 5.0);
2168
2169// Asserts that val1 is less than, or almost equal to, val2. Fails
2170// otherwise. In particular, it fails if either val1 or val2 is NaN.
2171GTEST_API_ AssertionResult FloatLE(const char* expr1, const char* expr2,
2172 float val1, float val2);
2173GTEST_API_ AssertionResult DoubleLE(const char* expr1, const char* expr2,
2174 double val1, double val2);
2175
2176
2177#if GTEST_OS_WINDOWS
2178
2179// Macros that test for HRESULT failure and success, these are only useful
2180// on Windows, and rely on Windows SDK macros and APIs to compile.
2181//
2182// * {ASSERT|EXPECT}_HRESULT_{SUCCEEDED|FAILED}(expr)
2183//
2184// When expr unexpectedly fails or succeeds, Google Test prints the
2185// expected result and the actual result with both a human-readable
2186// string representation of the error, if available, as well as the
2187// hex result code.
2188# define EXPECT_HRESULT_SUCCEEDED(expr) \
2189 EXPECT_PRED_FORMAT1(::testing::internal::IsHRESULTSuccess, (expr))
2190
2191# define ASSERT_HRESULT_SUCCEEDED(expr) \
2192 ASSERT_PRED_FORMAT1(::testing::internal::IsHRESULTSuccess, (expr))
2193
2194# define EXPECT_HRESULT_FAILED(expr) \
2195 EXPECT_PRED_FORMAT1(::testing::internal::IsHRESULTFailure, (expr))
2196
2197# define ASSERT_HRESULT_FAILED(expr) \
2198 ASSERT_PRED_FORMAT1(::testing::internal::IsHRESULTFailure, (expr))
2199
2200#endif // GTEST_OS_WINDOWS
2201
2202// Macros that execute statement and check that it doesn't generate new fatal
2203// failures in the current thread.
2204//
2205// * {ASSERT|EXPECT}_NO_FATAL_FAILURE(statement);
2206//
2207// Examples:
2208//
2209// EXPECT_NO_FATAL_FAILURE(Process());
2210// ASSERT_NO_FATAL_FAILURE(Process()) << "Process() failed";
2211//
2212#define ASSERT_NO_FATAL_FAILURE(statement) \
2213 GTEST_TEST_NO_FATAL_FAILURE_(statement, GTEST_FATAL_FAILURE_)
2214#define EXPECT_NO_FATAL_FAILURE(statement) \
2215 GTEST_TEST_NO_FATAL_FAILURE_(statement, GTEST_NONFATAL_FAILURE_)
2216
2217// Causes a trace (including the given source file path and line number,
2218// and the given message) to be included in every test failure message generated
2219// by code in the scope of the lifetime of an instance of this class. The effect
2220// is undone with the destruction of the instance.
2221//
2222// The message argument can be anything streamable to std::ostream.
2223//
2224// Example:
2225// testing::ScopedTrace trace("file.cc", 123, "message");
2226//
2227class GTEST_API_ ScopedTrace {
2228 public:
2229 // The c'tor pushes the given source file location and message onto
2230 // a trace stack maintained by Google Test.
2231
2232 // Template version. Uses Message() to convert the values into strings.
2233 // Slow, but flexible.
2234 template <typename T>
2235 ScopedTrace(const char* file, int line, const T& message) {
2236 PushTrace(file, line, (Message() << message).GetString());
2237 }
2238
2239 // Optimize for some known types.
2240 ScopedTrace(const char* file, int line, const char* message) {
2241 PushTrace(file, line, message ? message : "(null)");
2242 }
2243
2244 ScopedTrace(const char* file, int line, const std::string& message) {
2245 PushTrace(file, line, message);
2246 }
2247
2248 // The d'tor pops the info pushed by the c'tor.
2249 //
2250 // Note that the d'tor is not virtual in order to be efficient.
2251 // Don't inherit from ScopedTrace!
2252 ~ScopedTrace();
2253
2254 private:
2255 void PushTrace(const char* file, int line, std::string message);
2256
2257 GTEST_DISALLOW_COPY_AND_ASSIGN_(ScopedTrace);
2258} GTEST_ATTRIBUTE_UNUSED_; // A ScopedTrace object does its job in its
2259 // c'tor and d'tor. Therefore it doesn't
2260 // need to be used otherwise.
2261
2262// Causes a trace (including the source file path, the current line
2263// number, and the given message) to be included in every test failure
2264// message generated by code in the current scope. The effect is
2265// undone when the control leaves the current scope.
2266//
2267// The message argument can be anything streamable to std::ostream.
2268//
2269// In the implementation, we include the current line number as part
2270// of the dummy variable name, thus allowing multiple SCOPED_TRACE()s
2271// to appear in the same block - as long as they are on different
2272// lines.
2273//
2274// Assuming that each thread maintains its own stack of traces.
2275// Therefore, a SCOPED_TRACE() would (correctly) only affect the
2276// assertions in its own thread.
2277#define SCOPED_TRACE(message) \
2278 ::testing::ScopedTrace GTEST_CONCAT_TOKEN_(gtest_trace_, __LINE__)(\
2279 __FILE__, __LINE__, (message))
2280
2281// Compile-time assertion for type equality.
2282// StaticAssertTypeEq<type1, type2>() compiles if and only if type1 and type2
2283// are the same type. The value it returns is not interesting.
2284//
2285// Instead of making StaticAssertTypeEq a class template, we make it a
2286// function template that invokes a helper class template. This
2287// prevents a user from misusing StaticAssertTypeEq<T1, T2> by
2288// defining objects of that type.
2289//
2290// CAVEAT:
2291//
2292// When used inside a method of a class template,
2293// StaticAssertTypeEq<T1, T2>() is effective ONLY IF the method is
2294// instantiated. For example, given:
2295//
2296// template <typename T> class Foo {
2297// public:
2298// void Bar() { testing::StaticAssertTypeEq<int, T>(); }
2299// };
2300//
2301// the code:
2302//
2303// void Test1() { Foo<bool> foo; }
2304//
2305// will NOT generate a compiler error, as Foo<bool>::Bar() is never
2306// actually instantiated. Instead, you need:
2307//
2308// void Test2() { Foo<bool> foo; foo.Bar(); }
2309//
2310// to cause a compiler error.
2311template <typename T1, typename T2>
2312constexpr bool StaticAssertTypeEq() noexcept {
2313 static_assert(std::is_same<T1, T2>::value, "T1 and T2 are not the same type");
2314 return true;
2315}
2316
2317// Defines a test.
2318//
2319// The first parameter is the name of the test suite, and the second
2320// parameter is the name of the test within the test suite.
2321//
2322// The convention is to end the test suite name with "Test". For
2323// example, a test suite for the Foo class can be named FooTest.
2324//
2325// Test code should appear between braces after an invocation of
2326// this macro. Example:
2327//
2328// TEST(FooTest, InitializesCorrectly) {
2329// Foo foo;
2330// EXPECT_TRUE(foo.StatusIsOK());
2331// }
2332
2333// Note that we call GetTestTypeId() instead of GetTypeId<
2334// ::testing::Test>() here to get the type ID of testing::Test. This
2335// is to work around a suspected linker bug when using Google Test as
2336// a framework on Mac OS X. The bug causes GetTypeId<
2337// ::testing::Test>() to return different values depending on whether
2338// the call is from the Google Test framework itself or from user test
2339// code. GetTestTypeId() is guaranteed to always return the same
2340// value, as it always calls GetTypeId<>() from the Google Test
2341// framework.
2342#define GTEST_TEST(test_suite_name, test_name) \
2343 GTEST_TEST_(test_suite_name, test_name, ::testing::Test, \
2344 ::testing::internal::GetTestTypeId())
2345
2346// Define this macro to 1 to omit the definition of TEST(), which
2347// is a generic name and clashes with some other libraries.
2348#if !GTEST_DONT_DEFINE_TEST
2349#define TEST(test_suite_name, test_name) GTEST_TEST(test_suite_name, test_name)
2350#endif
2351
2352// Defines a test that uses a test fixture.
2353//
2354// The first parameter is the name of the test fixture class, which
2355// also doubles as the test suite name. The second parameter is the
2356// name of the test within the test suite.
2357//
2358// A test fixture class must be declared earlier. The user should put
2359// the test code between braces after using this macro. Example:
2360//
2361// class FooTest : public testing::Test {
2362// protected:
2363// void SetUp() override { b_.AddElement(3); }
2364//
2365// Foo a_;
2366// Foo b_;
2367// };
2368//
2369// TEST_F(FooTest, InitializesCorrectly) {
2370// EXPECT_TRUE(a_.StatusIsOK());
2371// }
2372//
2373// TEST_F(FooTest, ReturnsElementCountCorrectly) {
2374// EXPECT_EQ(a_.size(), 0);
2375// EXPECT_EQ(b_.size(), 1);
2376// }
2377//
2378// GOOGLETEST_CM0011 DO NOT DELETE
2379#if !GTEST_DONT_DEFINE_TEST
2380#define TEST_F(test_fixture, test_name)\
2381 GTEST_TEST_(test_fixture, test_name, test_fixture, \
2382 ::testing::internal::GetTypeId<test_fixture>())
2383#endif // !GTEST_DONT_DEFINE_TEST
2384
2385// Returns a path to temporary directory.
2386// Tries to determine an appropriate directory for the platform.
2387GTEST_API_ std::string TempDir();
2388
2389#ifdef _MSC_VER
2390# pragma warning(pop)
2391#endif
2392
2393// Dynamically registers a test with the framework.
2394//
2395// This is an advanced API only to be used when the `TEST` macros are
2396// insufficient. The macros should be preferred when possible, as they avoid
2397// most of the complexity of calling this function.
2398//
2399// The `factory` argument is a factory callable (move-constructible) object or
2400// function pointer that creates a new instance of the Test object. It
2401// handles ownership to the caller. The signature of the callable is
2402// `Fixture*()`, where `Fixture` is the test fixture class for the test. All
2403// tests registered with the same `test_suite_name` must return the same
2404// fixture type. This is checked at runtime.
2405//
2406// The framework will infer the fixture class from the factory and will call
2407// the `SetUpTestSuite` and `TearDownTestSuite` for it.
2408//
2409// Must be called before `RUN_ALL_TESTS()` is invoked, otherwise behavior is
2410// undefined.
2411//
2412// Use case example:
2413//
2414// class MyFixture : public ::testing::Test {
2415// public:
2416// // All of these optional, just like in regular macro usage.
2417// static void SetUpTestSuite() { ... }
2418// static void TearDownTestSuite() { ... }
2419// void SetUp() override { ... }
2420// void TearDown() override { ... }
2421// };
2422//
2423// class MyTest : public MyFixture {
2424// public:
2425// explicit MyTest(int data) : data_(data) {}
2426// void TestBody() override { ... }
2427//
2428// private:
2429// int data_;
2430// };
2431//
2432// void RegisterMyTests(const std::vector<int>& values) {
2433// for (int v : values) {
2434// ::testing::RegisterTest(
2435// "MyFixture", ("Test" + std::to_string(v)).c_str(), nullptr,
2436// std::to_string(v).c_str(),
2437// __FILE__, __LINE__,
2438// // Important to use the fixture type as the return type here.
2439// [=]() -> MyFixture* { return new MyTest(v); });
2440// }
2441// }
2442// ...
2443// int main(int argc, char** argv) {
2444// std::vector<int> values_to_test = LoadValuesFromConfig();
2445// RegisterMyTests(values_to_test);
2446// ...
2447// return RUN_ALL_TESTS();
2448// }
2449//
2450template <int&... ExplicitParameterBarrier, typename Factory>
2451TestInfo* RegisterTest(const char* test_suite_name, const char* test_name,
2452 const char* type_param, const char* value_param,
2453 const char* file, int line, Factory factory) {
2454 using TestT = typename std::remove_pointer<decltype(factory())>::type;
2455
2456 class FactoryImpl : public internal::TestFactoryBase {
2457 public:
2458 explicit FactoryImpl(Factory f) : factory_(std::move(f)) {}
2459 Test* CreateTest() override { return factory_(); }
2460
2461 private:
2462 Factory factory_;
2463 };
2464
2465 return internal::MakeAndRegisterTestInfo(
2466 test_suite_name, test_name, type_param, value_param,
2467 internal::CodeLocation(file, line), internal::GetTypeId<TestT>(),
2468 internal::SuiteApiResolver<TestT>::GetSetUpCaseOrSuite(file, line),
2469 internal::SuiteApiResolver<TestT>::GetTearDownCaseOrSuite(file, line),
2470 new FactoryImpl{std::move(factory)});
2471}
2472
2473} // namespace testing
2474
2475// Use this function in main() to run all tests. It returns 0 if all
2476// tests are successful, or 1 otherwise.
2477//
2478// RUN_ALL_TESTS() should be invoked after the command line has been
2479// parsed by InitGoogleTest().
2480//
2481// This function was formerly a macro; thus, it is in the global
2482// namespace and has an all-caps name.
2483int RUN_ALL_TESTS() GTEST_MUST_USE_RESULT_;
2484
2485inline int RUN_ALL_TESTS() {
2486 return ::testing::UnitTest::GetInstance()->Run();
2487}
2488
2489GTEST_DISABLE_MSC_WARNINGS_POP_() // 4251
2490
2491#endif // GTEST_INCLUDE_GTEST_GTEST_H_
2492