Sacado Package Browser (Single Doxygen Collection)  Version of the Day
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Classes | Public Member Functions | Static Public Member Functions | Protected Member Functions | Private Member Functions | Static Private Member Functions | Private Attributes | Friends | List of all members
testing::Test Class Referenceabstract

#include <gtest.h>

Inherited by bar::MixedUpTestSuiteTest, bar::MixedUpTestSuiteWithSameTestNameTest, CommonTest< T >, ContainerTest< T >, DetectNotInstantiatedTypesTest< T >, DynamicFixture, DynamicUnitTestFixture, ExpectFailureTest, FadBLASUnitTests< FadType >, FadFadOpsUnitTest< FadFadType >, FadLAPACKUnitTests< FadType >, FadOpsUnitTest< FadType >, FadOpsUnitTest2< FadType >, FatalFailureInFixtureConstructorTest, FatalFailureInSetUpTest, foo::MixedUpTestSuiteTest, foo::MixedUpTestSuiteWithSameTestNameTest, FooTest, FooTest, FooTestFixture, GMockOutputTest, library1::NumericTest< T >, library2::NumericTest< T >, library2::TrimmedTest< T >, LogicalSparseOpsUnitTest, MacroNamingTestNonParametrized, NonFatalFailureInFixtureConstructorTest, NonFatalFailureInSetUpTest, NonParameterizedBaseTest, Predicate1Test, Predicate2Test, Predicate3Test, Predicate4Test, Predicate5Test, PropertyOne, PropertyTwo, ProtectedFixtureMethodsTest, SetupFailTest, SetupFailTest, TaylorOpsUnitTest< TaylorType >, TearDownFailTest, TearDownFailTest, TEST_before_TEST_F_in_same_test_case, TEST_F_before_TEST_in_same_test_case, testing::CodeLocationForTESTF, testing::CodeLocationForTYPEDTEST< T >, testing::CodeLocationForTYPEDTESTP< T >, testing::CurrentTestInfoTest, testing::gmock_function_mocker_test::ExpectCallTest< T >, testing::gmock_function_mocker_test::MockMethodMockFunctionSignatureTest< F >, testing::gmock_function_mocker_test::OverloadedMockMethodTest< T >, testing::gmock_function_mocker_test::TemplateMockTest< T >, testing::internal::ListenerTest, testing::internal::TestSuiteWithCommentTest< T >, testing::internal::UnitTestRecordPropertyTestHelper, testing::ParseFlagsTest, testing::SetUpTestCaseTest, testing::SetUpTestSuiteTest, testing::TestInfoTest, testing::TestWithParam< T >, TestSuiteThatFailsToSetUp, TestSuiteThatSkipsInSetUp, testing::TestWithParam< bool >, testing::TestWithParam< int >, testing::TestWithParam< MyEnums >, testing::TestWithParam< MyType >, testing::TestWithParam< std::string >, TraitsTests< ADType >, TypedTest< T >, TypedTest< T >, TypedTest< T >, TypedTest1< T >, TypedTest2< T >, TypedTestP< T >, TypedTestP1< T >, TypedTestP2< T >, TypedTestSuitePStateTest, TypedTestWithNames< T >, TypedTestWithNames< T >, TypeParameterizedTestSuite< T >, TypeParametrizedTestWithNames< T >, TypeParamTest< T >, works_here::NotInstantiatedTypeTest< T >, and works_here::NotUsedTypeTest< T >.

Classes

struct  Setup_should_be_spelled_SetUp
 

Public Member Functions

virtual ~Test ()
 

Static Public Member Functions

static void SetUpTestSuite ()
 
static void TearDownTestSuite ()
 
static void TearDownTestCase ()
 
static void SetUpTestCase ()
 
static bool HasFatalFailure ()
 
static bool HasNonfatalFailure ()
 
static bool IsSkipped ()
 
static bool HasFailure ()
 
static void RecordProperty (const std::string &key, const std::string &value)
 
template<typename T , std::enable_if_t< std::is_convertible< T, int64_t >::value, bool > = true>
static void RecordProperty (const std::string &key, const T &value)
 

Protected Member Functions

 Test ()
 
virtual void SetUp ()
 
virtual void TearDown ()
 

Private Member Functions

virtual void TestBody ()=0
 
void Run ()
 
void DeleteSelf_ ()
 
virtual
Setup_should_be_spelled_SetUp
Setup ()
 
 Test (const Test &)=delete
 
Testoperator= (const Test &)=delete
 

Static Private Member Functions

static bool HasSameFixtureClass ()
 

Private Attributes

const std::unique_ptr
< GTEST_FLAG_SAVER_
gtest_flag_saver_
 

Friends

class TestInfo
 

Detailed Description

Definition at line 242 of file gtest.h.

Constructor & Destructor Documentation

Test::~Test ( )
virtualdefault
Test::Test ( )
protected

Definition at line 2502 of file gtest.cc.

testing::Test::Test ( const Test )
privatedelete

Member Function Documentation

static void testing::Test::SetUpTestSuite ( )
inlinestatic

Definition at line 255 of file gtest.h.

static void testing::Test::TearDownTestSuite ( )
inlinestatic

Definition at line 263 of file gtest.h.

static void testing::Test::TearDownTestCase ( )
inlinestatic

Definition at line 268 of file gtest.h.

static void testing::Test::SetUpTestCase ( )
inlinestatic

Definition at line 269 of file gtest.h.

bool Test::HasFatalFailure ( )
static

Definition at line 2741 of file gtest.cc.

bool Test::HasNonfatalFailure ( )
static

Definition at line 2746 of file gtest.cc.

bool Test::IsSkipped ( )
static

Definition at line 2753 of file gtest.cc.

static bool testing::Test::HasFailure ( )
inlinestatic

Definition at line 283 of file gtest.h.

void Test::RecordProperty ( const std::string &  key,
const std::string &  value 
)
static

Definition at line 2520 of file gtest.cc.

template<typename T , std::enable_if_t< std::is_convertible< T, int64_t >::value, bool > = true>
static void testing::Test::RecordProperty ( const std::string &  key,
const T value 
)
inlinestatic

Definition at line 303 of file gtest.h.

void Test::SetUp ( )
protectedvirtual
void Test::TearDown ( )
protectedvirtual
bool Test::HasSameFixtureClass ( )
staticprivate

Definition at line 2545 of file gtest.cc.

virtual void testing::Test::TestBody ( )
privatepure virtual
void Test::Run ( )
private

Definition at line 2718 of file gtest.cc.

void testing::Test::DeleteSelf_ ( )
inlineprivate

Definition at line 335 of file gtest.h.

virtual Setup_should_be_spelled_SetUp* testing::Test::Setup ( )
inlineprivatevirtual

Definition at line 356 of file gtest.h.

Test& testing::Test::operator= ( const Test )
privatedelete

Friends And Related Function Documentation

friend class TestInfo
friend

Definition at line 244 of file gtest.h.

Member Data Documentation

const std::unique_ptr<GTEST_FLAG_SAVER_> testing::Test::gtest_flag_saver_
private

Definition at line 337 of file gtest.h.


The documentation for this class was generated from the following files: