HomeSort by relevance Sort by last modified time
    Searched refs:TEST (Results 126 - 150 of 2356) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/clang/unittests/AST/
SourceLocationTest.cpp 13 // FIXME: In the long-term, when we test more than source locations, we may
14 // want to have a unit test file for an AST node (or group of related nodes),
15 // rather than a unit test file for source locations for all AST nodes.
29 // FIXME: Pull the *Verifier tests into their own test file.
31 TEST(MatchVerifier, ParseError) {
37 TEST(MatchVerifier, NoMatch) {
43 TEST(MatchVerifier, WrongType) {
49 TEST(LocationVerifier, WrongLocation) {
55 TEST(RangeVerifier, WrongRange) {
68 TEST(LabelDecl, Range)
    [all...]
  /external/chromium/testing/gtest/test/
gtest-printers_test.cc 32 // Google Test - The Google C++ Testing Framework
246 TEST(PrintEnumTest, AnonymousEnum) {
251 TEST(PrintEnumTest, EnumWithoutPrinter) {
256 TEST(PrintEnumTest, EnumWithStreaming) {
261 TEST(PrintEnumTest, EnumWithPrintTo) {
268 TEST(PrintClassTest, BiggestIntConvertible) {
275 TEST(PrintCharTest, PlainChar) {
295 TEST(PrintCharTest, SignedChar) {
302 TEST(PrintCharTest, UnsignedChar) {
311 TEST(PrintBuiltInTypeTest, Bool)
    [all...]
gtest-filepath_test.cc 32 // Google Test filepath utilities
35 // Google Test. They are subject to change without notice.
38 // build or make-files for some existing Google Test clients. Do not
44 // Indicates that this translation unit is part of Google Test's
86 TEST(GetCurrentDirTest, ReturnsCurrentDir) {
110 TEST(IsEmptyTest, ReturnsTrueForEmptyPath) {
115 TEST(IsEmptyTest, ReturnsFalseForNonEmptyPath) {
123 TEST(RemoveDirectoryNameTest, WhenEmptyName) {
128 TEST(RemoveDirectoryNameTest, ButNoDirectory) {
134 TEST(RemoveDirectoryNameTest, RootFileShouldGiveFileName)
    [all...]
  /external/gtest/test/
gtest-printers_test.cc 32 // Google Test - The Google C++ Testing Framework
246 TEST(PrintEnumTest, AnonymousEnum) {
251 TEST(PrintEnumTest, EnumWithoutPrinter) {
256 TEST(PrintEnumTest, EnumWithStreaming) {
261 TEST(PrintEnumTest, EnumWithPrintTo) {
268 TEST(PrintClassTest, BiggestIntConvertible) {
275 TEST(PrintCharTest, PlainChar) {
295 TEST(PrintCharTest, SignedChar) {
302 TEST(PrintCharTest, UnsignedChar) {
311 TEST(PrintBuiltInTypeTest, Bool)
    [all...]
gtest-filepath_test.cc 32 // Google Test filepath utilities
35 // Google Test. They are subject to change without notice.
38 // build or make-files for some existing Google Test clients. Do not
44 // Indicates that this translation unit is part of Google Test's
86 TEST(GetCurrentDirTest, ReturnsCurrentDir) {
110 TEST(IsEmptyTest, ReturnsTrueForEmptyPath) {
115 TEST(IsEmptyTest, ReturnsFalseForNonEmptyPath) {
123 TEST(RemoveDirectoryNameTest, WhenEmptyName) {
128 TEST(RemoveDirectoryNameTest, ButNoDirectory) {
134 TEST(RemoveDirectoryNameTest, RootFileShouldGiveFileName)
    [all...]
  /dalvik/unit-tests/
dvmHumanReadableDescriptor_test.cpp 5 TEST(dvmHumanReadableDescriptor, ArrayReferences) {
10 TEST(dvmHumanReadableDescriptor, ScalarReferences) {
15 TEST(dvmHumanReadableDescriptor, PrimitiveArrays) {
34 TEST(dvmHumanReadableDescriptor, PrimitiveScalars) {
  /external/chromium/chrome/common/
guid_unittest.cc 12 TEST(GUIDTest, GUIDGeneratesAllZeroes) {
18 TEST(GUIDTest, GUIDGeneratesCorrectly) {
25 TEST(GUIDTest, GUIDCorrectlyFormatted) {
33 TEST(GUIDTest, GUIDBasicUniqueness) {
  /external/chromium/testing/gtest/samples/
sample2_unittest.cc 35 // This sample shows how to write a more complex unit test for a class
38 // Usually, it's a good idea to have one test for each method in your
46 // In this example, we test the MyString class (a simple string).
49 TEST(MyString, DefaultConstructor) {
80 TEST(MyString, ConstructorFromCString) {
88 TEST(MyString, CopyConstructor) {
95 TEST(MyString, Set) {
  /external/chromium_org/base/
guid_unittest.cc 12 TEST(GUIDTest, GUIDGeneratesAllZeroes) {
18 TEST(GUIDTest, GUIDGeneratesCorrectly) {
25 TEST(GUIDTest, GUIDCorrectlyFormatted) {
33 TEST(GUIDTest, GUIDBasicUniqueness) {
  /external/chromium_org/base/process/
process_util_unittest_ios.cc 9 TEST(ProcessUtilTestIos, Memory) {
  /external/chromium_org/chrome/browser/download/
download_util_unittest.cc 11 TEST(DownloadUtilTest, FinchStrings) {
  /external/chromium_org/media/base/
media_file_checker_unittest.cc 30 TEST(MediaFileCheckerTest, InvalidFile) {
34 TEST(MediaFileCheckerTest, Video) {
38 TEST(MediaFileCheckerTest, Audio) {
43 TEST(MediaFileCheckerTest, MP3) {
  /external/chromium_org/net/proxy/
dhcp_proxy_script_fetcher_factory_unittest.cc 13 TEST(DhcpProxyScriptFetcherFactoryTest, DoNothingWhenDisabled) {
21 TEST(DhcpProxyScriptFetcherFactoryTest, WindowsFetcherOnWindows) {
31 TEST(DhcpProxyScriptFetcherFactoryTest, IsSupported) {
39 TEST(DhcpProxyScriptFetcherFactoryTest, SetEnabled) {
  /external/chromium_org/remoting/codec/
video_encoder_verbatim_unittest.cc 13 TEST(VideoEncoderVerbatimTest, TestVideoEncoder) {
18 TEST(VideoEncoderVerbatimTest, TestVideoEncoderSmallOutputBuffer) {
24 TEST(VideoEncoderVerbatimTest, EncodeAndDecode) {
30 TEST(VideoEncoderVerbatimTest, EncodeAndDecodeSmallOutputBuffer) {
  /external/chromium_org/rlz/lib/
machine_id_unittest.cc 9 #include "rlz/test/rlz_test_helpers.h"
12 // This test will fail if the behavior of GetMachineId changes.
13 TEST(MachineDealCodeTestMachineId, MachineId) {
  /external/chromium_org/testing/gtest/samples/
sample2_unittest.cc 35 // This sample shows how to write a more complex unit test for a class
38 // Usually, it's a good idea to have one test for each method in your
46 // In this example, we test the MyString class (a simple string).
49 TEST(MyString, DefaultConstructor) {
80 TEST(MyString, ConstructorFromCString) {
88 TEST(MyString, CopyConstructor) {
95 TEST(MyString, Set) {
  /external/chromium_org/third_party/WebKit/Source/wtf/tests/
VectorBasic.cpp 33 TEST(WTF, VectorBasic)
  /external/chromium_org/third_party/mesa/src/src/glsl/tests/
ralloc_test.cpp 32 TEST(ralloc_test, null_parent)
  /external/compiler-rt/lib/tsan/tests/rtl/
tsan_thread.cc 16 TEST(ThreadSanitizer, ThreadSync) {
27 TEST(ThreadSanitizer, ThreadDetach1) {
33 TEST(ThreadSanitizer, ThreadDetach2) {
47 TEST(DISABLED_SLOW_ThreadSanitizer, ThreadALot) {
  /external/gtest/samples/
sample2_unittest.cc 35 // This sample shows how to write a more complex unit test for a class
38 // Usually, it's a good idea to have one test for each method in your
46 // In this example, we test the MyString class (a simple string).
49 TEST(MyString, DefaultConstructor) {
80 TEST(MyString, ConstructorFromCString) {
88 TEST(MyString, CopyConstructor) {
95 TEST(MyString, Set) {
  /external/llvm/unittests/Support/
LeakDetectorTest.cpp 19 TEST(LeakDetector, Death1) {
  /external/mesa3d/src/glsl/tests/
ralloc_test.cpp 32 TEST(ralloc_test, null_parent)
  /external/protobuf/gtest/samples/
sample2_unittest.cc 35 // This sample shows how to write a more complex unit test for a class
38 // Usually, it's a good idea to have one test for each method in your
46 // In this example, we test the MyString class (a simple string).
49 TEST(MyString, DefaultConstructor) {
80 TEST(MyString, ConstructorFromCString) {
88 TEST(MyString, CopyConstructor) {
95 TEST(MyString, Set) {
sample4_unittest.cc 36 TEST(Counter, Increment) {
  /ndk/sources/third_party/googletest/googletest/samples/
sample2_unittest.cc 35 // This sample shows how to write a more complex unit test for a class
38 // Usually, it's a good idea to have one test for each method in your
46 // In this example, we test the MyString class (a simple string).
49 TEST(MyString, DefaultConstructor) {
80 TEST(MyString, ConstructorFromCString) {
88 TEST(MyString, CopyConstructor) {
95 TEST(MyString, Set) {

Completed in 912 milliseconds

1 2 3 4 56 7 8 91011>>