OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:unittest
(Results
76 - 100
of
196
) sorted by null
1
2
3
4
5
6
7
8
/external/webkit/WebKitTools/Scripts/webkitpy/
queueengine_unittest.py
33
import
unittest
namespace
123
class QueueEngineTest(
unittest
.TestCase):
170
unittest
.main()
bugzilla_unittest.py
29
import
unittest
namespace
52
class CommitterValidatorTest(
unittest
.TestCase):
63
class BugzillaTest(
unittest
.TestCase):
245
class BugzillaQueriesTest(
unittest
.TestCase):
303
unittest
.main()
buildbot_unittest.py
29
import
unittest
namespace
35
class BuildBotTest(
unittest
.TestCase):
155
unittest
.main()
changelogs_unittest.py
29
import
unittest
namespace
36
class ChangeLogsTest(
unittest
.TestCase):
179
unittest
.main()
diff_parser_unittest.py
29
import
unittest
namespace
34
class DiffParserTest(
unittest
.TestCase):
146
unittest
.main()
outputcapture.py
29
# Class for
unittest
support. Used for capturing stderr/stdout.
/external/chromium/sdch/open-vcdiff/src/gtest/
gtest.h
326
// The constructor of TestInfo registers itself with the
UnitTest
335
// Creates a TestInfo object and registers it with the
UnitTest
439
// A
UnitTest
consists of a list of TestCases.
441
// This is a singleton class. The only instance of
UnitTest
is
442
// created when
UnitTest
::GetInstance() is first called. This
445
//
UnitTest
is not copyable.
449
class
UnitTest
{
451
// Gets the singleton
UnitTest
object. The first time this method
452
// is called, a
UnitTest
object is constructed and returned.
454
static
UnitTest
* GetInstance()
[
all
...]
/external/webkit/WebKitTools/Scripts/webkitpy/style/
checker_unittest.py
37
import
unittest
namespace
51
class ProcessorOptionsTest(
unittest
.TestCase):
136
class GlobalVariablesTest(
unittest
.TestCase):
199
class ArgumentPrinterTest(
unittest
.TestCase):
232
class ArgumentParserTest(
unittest
.TestCase):
363
class ProcessorDispatcherSkipTest(
unittest
.TestCase):
408
class ProcessorDispatcherDispatchTest(
unittest
.TestCase):
522
class StyleCheckerTest(
unittest
.TestCase):
548
class StyleCheckerCheckFileTest(
unittest
.TestCase):
680
unittest
.main(
[
all
...]
/development/testrunner/tests/
am_instrument_parser_tests.py
18
import
unittest
namespace
24
class AmParserTest(
unittest
.TestCase):
201
unittest
.main()
/development/tools/axl/
singletonmixin.py
110
import
unittest
namespace
112
class PublicInterfaceTest(
unittest
.TestCase):
218
unittest
.main()
/external/chromium/base/test/
test_suite.h
87
testing::
UnitTest
* instance = testing::
UnitTest
::GetInstance();
105
testing::
UnitTest
::GetInstance()->listeners();
/external/gtest/test/
gtest_test_utils.py
38
import
unittest
namespace
191
#
unittest
.main(). Otherwise the latter will be confused by the
194
unittest
.main()
gtest_color_test_.cc
48
// The purpose of this is to ensure that the
UnitTest
singleton is
gtest_break_on_failure_unittest.py
46
import
unittest
namespace
92
class GTestBreakOnFailureUnitTest(
unittest
.TestCase):
gtest_color_test.py
39
import
unittest
namespace
68
class GTestColorTest(
unittest
.TestCase):
gtest_list_tests_unittest.py
46
import
unittest
namespace
93
class GTestListTestsUnitTest(
unittest
.TestCase):
/external/chromium/base/
file_descriptor_shuffle.h
13
// In order to
unittest
this code, it's broken into the abstract action (an
/external/protobuf/gtest/test/
gtest_color_test_.cc
48
// The purpose of this is to ensure that the
UnitTest
singleton is
/external/protobuf/java/src/test/java/com/google/protobuf/
multiple_files_test.proto
36
import "google/protobuf/
unittest
.proto";
/external/protobuf/src/google/protobuf/
unittest_import.proto
35
// A proto file which is imported by
unittest
.proto to test importing.
/external/skia/include/xml/
SkDOM.h
90
SkDEBUGCODE(static void
UnitTest
();)
SkXMLWriter.h
70
SkDEBUGCODE(static void
UnitTest
();)
/external/skia/src/animator/
SkAnimatorScript.h
79
static void
UnitTest
();
SkXMLAnimatorWriter.cpp
58
void SkXMLAnimatorWriter::
UnitTest
(SkCanvas* canvas)
/external/gtest/include/gtest/
gtest.h
358
// The constructor of TestInfo registers itself with the
UnitTest
465
// A
UnitTest
consists of a list of TestCases.
467
// This is a singleton class. The only instance of
UnitTest
is
468
// created when
UnitTest
::GetInstance() is first called. This
471
//
UnitTest
is not copyable.
475
class
UnitTest
{
477
// Gets the singleton
UnitTest
object. The first time this method
478
// is called, a
UnitTest
object is constructed and returned.
480
static
UnitTest
* GetInstance();
488
// The
UnitTest
object takes ownership of the given environment
[
all
...]
Completed in 2463 milliseconds
1
2
3
4
5
6
7
8