/external/gtest/include/gtest/ |
gtest-param-test.h.pump | 35 // Macros and functions for implementing parameterized tests 44 // Value-parameterized tests allow you to test your code with different 47 // Here is how you use value-parameterized tests: 51 // To write value-parameterized tests, first you should define a fixture 61 // Then, use the TEST_P macro to define as many parameterized tests 97 // The following statement will instantiate tests from the FooTest test case 108 // instantiations. The tests from the instantiation above will have 120 // This statement will instantiate all tests from FooTest again, each 126 // The tests from the instantiation above will have these names: 133 // Please note that INSTANTIATE_TEST_CASE_P will instantiate all tests [all...] |
gtest-typed-test.h | 35 // This header implements typed tests and type-parameterized tests. 37 // Typed (aka type-driven) tests repeat the same test for types in a 39 // typed tests. Here's how you do it: 65 // tests for this test case as you want. 87 // Type-parameterized tests are abstract test patterns parameterized 88 // by a type. Compared with typed tests, type-parameterized tests 95 // suite of type-parameterized tests to verify properties that any 99 // similar tests repeatedly. Here's an example [all...] |
/dalvik/libcore/luni/src/test/java/tests/api/java/net/ |
ProxySelectorTest.java | 16 package tests.api.java.net; 37 import tests.util.TestEnvironment; 82 * @tests java.net.ProxySelector#getDefault() 86 notes = "This is a complete subset of tests for getDefault method.", 99 * @tests java.net.ProxySelector#getDefault() 103 notes = "This is a complete subset of tests for getDefault method.", 127 * @tests java.net.ProxySelector#setDefault(ProxySelector)} 132 notes = "This is a complete subset of tests for setDefault method.", 158 * @tests java.net.ProxySelector#setDefault(ProxySelector)} 162 notes = "This is a complete subset of tests for setDefault method." [all...] |
ProxyTest.java | 16 package tests.api.java.net; 35 * @tests java.net.Proxy#Proxy(java.net.Proxy.Type, SocketAddress) 39 notes = "This is a complete subset of tests for Proxy constructor.", 61 * @tests java.net.Proxy#Proxy(java.net.Proxy.Type, SocketAddress) 65 notes = "This is a complete subset of tests for Proxy constructor.", 103 * @tests java.net.Proxy#hashCode() 133 * @tests java.net.Proxy#type() 154 * @tests java.net.Proxy#address() This method has been tested in 176 * @tests java.net.Proxy#toString() 208 * @tests java.net.Proxy#equals(Object [all...] |
/external/gtest/test/ |
gtest-death-test_test.cc | 32 // Tests for death tests. 101 // Tests that death tests work. 122 // things that conflict with death tests. 183 // Tests that ASSERT_DEATH can be used outside a TEST, TEST_F, or test fixture. 200 // Tests the ExitedWithCode predicate. 242 // Tests the ExitedWithCode predicate. 258 // Tests the KilledBySignal predicate. 272 // Tests that the death test macros expand to code which may or may no [all...] |
/cts/tools/utils/ |
buildCts.py | 60 print 'testRoot: Directory under which to search for CTS tests.' 82 source_root: Directory under which tests should be searched. 100 'cts/tests/src', # cts test stubs 122 self.__LogGenerateDescription('android.tests.sigtest') 123 package = tools.TestPackage('SignatureTest', 'android.tests.sigtest') 126 package.AddTest('android.tests.sigtest.SignatureTest.signatureTest') 132 """Generate the test description for the reference app tests.""" 145 """Generate the test description for the application security tests.""" 146 test_root = 'cts/tests/appsecurity-tests' [all...] |
/dalvik/libcore/luni/src/test/java/tests/api/java/io/ |
RandomAccessFileTest.java | 18 package tests.api.java.io; 55 * @tests java.io.RandomAccessFile#RandomAccessFile(java.io.File, 114 * @tests java.io.RandomAccessFile#RandomAccessFile(java.lang.String, 184 * @tests java.io.RandomAccessFile#close() 203 * @tests java.io.RandomAccessFile#getChannel() 229 * @tests java.io.RandomAccessFile#getFD() 249 * @tests java.io.RandomAccessFile#getFilePointer() 273 * @tests java.io.RandomAccessFile#length() 297 * @tests java.io.RandomAccessFile#read() 351 * @tests java.io.RandomAccessFile#read(byte[] [all...] |
AllTests.java | 17 package tests.api.java.io; 23 * This is autogenerated source file. Includes tests for package tests.api.java.io; 33 TestSuite suite = tests.TestSuiteFactory.createTestSuite("All tests for package tests.api.java.io;");
|
/dalvik/libcore/x-net/src/test/java/tests/api/javax/net/ssl/ |
HttpsURLConnectionTest.java | 19 package tests.api.javax.net.ssl; 38 import org.apache.harmony.security.tests.support.cert.TestUtils; 45 * Tests for <code>HttpsURLConnection</code> class constructors and methods. 52 * @tests javax.net.ssl.HttpsURLConnection#HttpsURLConnection(java_net_URL) 74 * @tests javax.net.ssl.HttpsURLConnection#getCipherSuite() 105 * @tests javax.net.ssl.HttpsURLConnection#getLocalCertificates() 140 * @tests javax.net.ssl.HttpsURLConnection#getDefaultHostnameVerifier() 155 * @tests javax.net.ssl.HttpsURLConnection#getDefaultSSLSocketFactory() 171 * @tests javax.net.ssl.HttpsURLConnection#getHostnameVerifier() 190 * @tests javax.net.ssl.HttpsURLConnection#getLocalPrincipal( [all...] |
/external/webkit/SunSpider/ |
sunspider | 56 --runs Number of times to run tests (default: $testRuns) 57 --tests Only run tests matching provided pattern 62 --ubench Use microbenchmark suite instead of regular tests. Same as --suite=ubench 78 'tests=s' => \$testsPattern, 126 my @tests = (); 132 open TESTLIST, "<", "tests/${suite}/LIST" or die "Can't find ./tests/${suite}/LIST"; 137 push @tests, $_; 155 $prefix .= "var tests = [ " . join(", ", map { '"' . $_ . '"' } @tests) . " ];\n" [all...] |
/dalvik/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/lang/ |
ByteTest.java | 17 package org.apache.harmony.luni.tests.java.lang; 30 * @tests java.lang.Byte#valueOf(byte) 52 * @tests java.lang.Byte#hashCode() 68 * @tests java.lang.Byte#Byte(String) 107 * @tests java.lang.Byte#Byte(byte) 123 * @tests java.lang.Byte#byteValue() 139 * @tests java.lang.Byte#equals(Object) 159 * @tests java.lang.Byte#toString() 175 * @tests java.lang.Byte#toString(byte) 191 * @tests java.lang.Byte#valueOf(String [all...] |
CompilerTest.java | 18 package org.apache.harmony.luni.tests.java.lang; 30 * @tests java.lang.Compiler#command(java.lang.Object) 54 * @tests java.lang.Compiler#compileClass(java.lang.Class) 76 * @tests java.lang.Compiler#compileClasses(java.lang.String) 98 * @tests java.lang.Compiler#disable() 116 * @tests java.lang.Compiler#enable()
|
IllegalArgumentExceptionTest.java | 18 package org.apache.harmony.luni.tests.java.lang; 32 * @tests java.lang.IllegalArgumentException#IllegalArgumentException() 48 * @tests java.lang.IllegalArgumentException#IllegalArgumentException(java.lang.String) 63 * @tests java.lang.IllegalArgumentException#IllegalArgumentException(String,Throwable) 93 * @tests serialization/deserialization. 106 * @tests serialization/deserialization compatibility with RI.
|
/external/opencore/engines/player/test/src/ |
test_pv_player_engine.h | 207 // The base class for all pvplayer engine asynchronous tests 329 // test_base-based class which will run async tests on pvPlayer engine 338 // Note: for command line options to work, the local tests need to be 0-99, 339 // Download tests 100-199, 340 // Streaming tests 200-299. 375 MultipleRepositionTest, // Start of local tests using media IO node 504 //Multiple Instance tests. 507 //this range reserved for future multiple instance tests. 511 // Project specific unit tests should have numbers 701 to 799 627 // ACCESS DRM plugin tests [all...] |
/dalvik/libcore/crypto/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/spec/ |
DHPrivateKeySpecTest.java | 23 package org.apache.harmony.crypto.tests.javax.crypto.spec; 45 * DHPrivateKeySpec class testing. Tests the equivalence of parameters 51 notes = "All functionality tested in one method. Probably it should be divided into several tests.", 57 notes = "All functionality tested in one method. Probably it should be divided into several tests.", 63 notes = "All functionality tested in one method. Probably it should be divided into several tests.", 69 notes = "All functionality tested in one method. Probably it should be divided into several tests.",
|
DHPublicKeySpecTest.java | 23 package org.apache.harmony.crypto.tests.javax.crypto.spec; 45 * DHPublicKeySpec class testing. Tests the equivalence of parameters 51 notes = "All functionality tested in one method. Probably it should be divided into several tests.", 57 notes = "All functionality tested in one method. Probably it should be divided into several tests.", 63 notes = "All functionality tested in one method. Probably it should be divided into several tests.", 69 notes = "All functionality tested in one method. Probably it should be divided into several tests.",
|
/dalvik/libcore/luni/src/test/java/com/google/coretests/ |
CoreTestPrinter.java | 42 * The time it took to execute the tests. 81 printer.println("Total tests : " + coreResult.fTotalTestCount); 82 printer.println("Tests run : " + coreResult.runCount()); 83 printer.println("Tests ignored : " + coreResult.fIgnoredCount); 86 printer.println("Normal tests : " + coreResult.fNormalTestCount); 88 printer.println("Broken tests : " + coreResult.fBrokenTestCount);
|
/dalvik/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/util/ |
DuplicateFormatFlagsExceptionTest.java | 17 package org.apache.harmony.luni.tests.java.util; 36 * @tests java.util.DuplicateFormatFlagsException#DuplicateFormatFlagsException(String) 56 * @tests java.util.DuplicateFormatFlagsException#getFlags() 72 * @tests java.util.DuplicateFormatFlagsException#getMessage() 104 * @tests serialization/deserialization. 119 * @tests serialization/deserialization compatibility with RI.
|
IllegalFormatFlagsExceptionTest.java | 17 package org.apache.harmony.luni.tests.java.util; 36 * @tests java.util.IllegalFormatFlagsException#IllegalFormatFlagsException(String) 56 * @tests java.util.IllegalFormatFlagsException.getFlags() 72 * @tests java.util.IllegalFormatFlagsException.getMessage() 104 * @tests serialization/deserialization. 119 * @tests serialization/deserialization compatibility with RI.
|
IllegalFormatPrecisionExceptionTest.java | 16 package org.apache.harmony.luni.tests.java.util; 35 * @tests java.util.IllegalFormatPrecisionException#IllegalFormatPrecisionException(int) 51 * @tests java.util.IllegalFormatPrecisionException#getPrecision() 67 * @tests method for 'java.util.IllegalFormatPrecisionException#getMessage() 100 * @tests serialization/deserialization. 115 * @tests serialization/deserialization compatibility with RI.
|
IllegalFormatWidthExceptionTest.java | 16 package org.apache.harmony.luni.tests.java.util; 35 * @tests java.util.IllegalFormatWidthException#IllegalFormatWidthException(int) 52 * @tests java.util.IllegalFormatWidthException#getWidth() 69 * @tests java.util.IllegalFormatWidthException#getMessage() 101 * @tests serialization/deserialization. 116 * @tests serialization/deserialization compatibility with RI.
|
MissingFormatArgumentExceptionTest.java | 17 package org.apache.harmony.luni.tests.java.util; 36 * @tests java.util.MissingFormatArgumentException#MissingFormatArgumentException(String) 56 * @tests java.util.MissingFormatArgumentException#getFormatSpecifier() 72 * @tests java.util.MissingFormatArgumentException#getMessage() 105 * @tests serialization/deserialization. 120 * @tests serialization/deserialization compatibility with RI.
|
MissingFormatWidthExceptionTest.java | 16 package org.apache.harmony.luni.tests.java.util; 35 * @tests java.util.MissingFormatWidthException#MissingFormatWidthException(String) 54 * @tests java.util.MissingFormatWidthException#getFormatSpecifier() 71 * @tests java.util.MissingFormatWidthException#getMessage() 104 * @tests serialization/deserialization. 119 * @tests serialization/deserialization compatibility with RI.
|
UnknownFormatConversionExceptionTest.java | 16 package org.apache.harmony.luni.tests.java.util; 35 * @tests java.util.UnknownFormatConversionException#UnknownFormatConversionException(String) 55 * @tests java.util.UnknownFormatConversionException#getConversion() 71 * @tests java.util.UnknownFormatConversionException#getMessage() 103 * @tests serialization/deserialization. 118 * @tests serialization/deserialization compatibility with RI.
|
UnknownFormatFlagsExceptionTest.java | 17 package org.apache.harmony.luni.tests.java.util; 36 * @tests java.util.UnknownFormatFlagsException#UnknownFormatFlagsException(String) 56 * @tests java.util.UnknownFormatFlagsException#getFlags() 72 * @tests java.util.UnknownFormatFlagsException#getMessage() 103 * @tests serialization/deserialization. 118 * @tests serialization/deserialization compatibility with RI.
|