OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:testing
(Results
26 - 35
of
35
) sorted by null
1
2
/external/gtest/include/gtest/
gtest.h
32
// The Google C++
Testing
Framework (Google Test)
94
namespace
testing
{
namespace
185
//
testing
::AssertionResult IsEven(const char* expr, int n) {
186
// if ((n % 2) == 0) return
testing
::AssertionSuccess();
191
// return
testing
::AssertionFailure(msg);
240
// class FooTest : public
testing
::Test {
578
//
testing
::Environment* const foo_env =
579
//
testing
::AddGlobalTestEnvironment(new FooEnvironment);
[
all
...]
/external/gtest/include/gtest/internal/
gtest-param-util.h
52
namespace
testing
{
namespace
194
::
testing
::internal::linked_ptr<const ParamGeneratorInterface<T> > impl_;
517
::
testing
::internal::MakeAndRegisterTestInfo(
625
} // namespace
testing
gtest-port.h
472
namespace
testing
{
namespace
608
::
testing
::internal::GTestLog(\
609
::
testing
::internal::GTEST_##severity, __FILE__, __LINE__, \
610
(::
testing
::Message() << (msg)).GetString().c_str())
867
::
testing
::internal::GTestCheckProvider(\
876
extern ::
testing
::internal::Int32 GTEST_FLAG(name)
878
extern ::
testing
::internal::String GTEST_FLAG(name)
884
::
testing
::internal::Int32 GTEST_FLAG(name) = (default_val)
886
::
testing
::internal::String GTEST_FLAG(name) = (default_val)
903
} // namespace
testing
[
all
...]
gtest-type-util.h
56
namespace
testing
{
namespace
[
all
...]
gtest-param-util-generated.h
53
namespace
testing
{
namespace
[
all
...]
/external/gtest/test/
gtest-death-test_test.cc
63
using
testing
::Message;
65
using
testing
::internal::DeathTest;
66
using
testing
::internal::DeathTestFactory;
67
using
testing
::internal::FilePath;
68
using
testing
::internal::GetLastSystemErrorMessage;
69
using
testing
::internal::ParseNaturalNumber;
70
using
testing
::internal::String;
72
namespace
testing
{
namespace
99
} // namespace
testing
103
class TestForDeathTest : public
testing
::Test
[
all
...]
gtest_unittest.cc
41
bool dummy =
testing
::GTEST_FLAG(also_run_disabled_tests)
42
||
testing
::GTEST_FLAG(break_on_failure)
43
||
testing
::GTEST_FLAG(catch_exceptions)
44
||
testing
::GTEST_FLAG(color) != "unknown"
45
||
testing
::GTEST_FLAG(filter) != "unknown"
46
||
testing
::GTEST_FLAG(list_tests)
47
||
testing
::GTEST_FLAG(output) != "unknown"
48
||
testing
::GTEST_FLAG(print_time)
49
||
testing
::GTEST_FLAG(repeat) > 0
50
||
testing
::GTEST_FLAG(show_internal_stack_frames
82
namespace
testing
{
namespace
92
namespace
testing
{
namespace
3437
namespace
testing
{
namespace
4236
namespace
testing
{
namespace
5167
namespace
testing
{
namespace in namespace:my_namespace
[
all
...]
/external/gtest/src/
gtest-death-test.cc
69
namespace
testing
{
namespace
232
DeathTestAbort(::
testing
::internal::String::Format(\
252
DeathTestAbort(::
testing
::internal::String::Format(\
352
// The textual content of the code this object is
testing
. This class
[
all
...]
gtest-internal-inl.h
30
// Utility functions and classes used by the Google C++
testing
framework.
63
namespace
testing
{
namespace
75
// library. This is solely for
testing
GetTestTypeId().
[
all
...]
gtest.cc
32
// The Google C++
Testing
Framework (Google Test)
133
namespace
testing
{
namespace
255
// A user must call
testing
::InitGoogleTest() to initialize Google
559
// Returns the type ID of ::
testing
::Test. We should always call this
560
// instead of GetTypeId< ::
testing
::Test>() to get the type ID of
561
//
testing
::Test. This is to work around a suspected linker bug when
563
// GetTypeId< ::
testing
::Test>() to return different values depending
573
// library. This is solely for
testing
GetTestTypeId().
887
// TODO(wan): consider allowing a
testing
::String object to
[
all
...]
Completed in 397 milliseconds
1
2