Searched refs:DeathTest (Results 1 - 2 of 2) sorted by relevance

/openjdk9/test/fmw/gtest/include/gtest/internal/
H A Dgtest-death-test-internal.h56 // DeathTest is a class that hides much of the complexity of the
69 class GTEST_API_ DeathTest { class in namespace:testing::internal
75 // case. Otherwise, the DeathTest pointer pointed to by the "test"
78 // DeathTest object that controls the execution of the current test.
80 const char* file, int line, DeathTest** test);
81 DeathTest();
82 virtual ~DeathTest() { }
87 explicit ReturnSentinel(DeathTest* test) : test_(test) { }
90 DeathTest* const test_;
136 GTEST_DISALLOW_COPY_AND_ASSIGN_(DeathTest);
[all...]
/openjdk9/test/fmw/gtest/src/
H A Dgtest-death-test.cc335 DeathTest::DeathTest() { function in class:testing::internal::DeathTest
345 bool DeathTest::Create(const char* statement, const RE* regex,
346 const char* file, int line, DeathTest** test) {
351 const char* DeathTest::LastMessage() {
355 void DeathTest::set_last_death_test_message(const std::string& message) {
359 std::string DeathTest::last_death_test_message_;
362 class DeathTestImpl : public DeathTest {
572 << "DeathTest::Passed somehow called before conclusion of test";
575 DeathTest
[all...]

Completed in 108 milliseconds