HomeSort by relevance Sort by last modified time
    Searched refs:testName (Results 1 - 25 of 312) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/grpc-grpc/src/objective-c/GRPCClient/
GRPCCall+Tests.h 35 testName:(NSString *)testName
GRPCCall+Tests.m 26 testName:(NSString *)testName
28 if (!host || !certsPath || !testName) {
40 hostConfig.hostNameOverride = testName;
  /external/smali/baksmali/src/test/java/org/jf/baksmali/
IdenticalRoundtripTest.java 41 * By default, the input/output file should be a resource at [testDir]/[testName].smali
52 @Nonnull @Override protected String getInputFilename(@Nonnull String testName) {
53 return String.format("%s%s%s.smali", testDir, File.separatorChar, testName);
56 @Nonnull @Override protected String getOutputFilename(@Nonnull String testName) {
57 return getInputFilename(testName);
RoundtripTest.java 47 * By default, the input and output files should be resources at [testDir]/[testName]Input.smali
48 * and [testDir]/[testName]Output.smali respectively
62 protected String getInputFilename(@Nonnull String testName) {
63 return String.format("%s%s%sInput.smali", testDir, File.separatorChar, testName);
67 protected String getOutputFilename(@Nonnull String testName) {
68 return String.format("%s%s%sOutput.smali", testDir, File.separatorChar, testName);
71 protected void runTest(@Nonnull String testName) {
72 runTest(testName, new BaksmaliOptions());
75 protected void runTest(@Nonnull String testName, @Nonnull BaksmaliOptions options) {
78 String inputFilename = getInputFilename(testName);
    [all...]
DisassemblyTest.java 49 * By default, the input and output files should be resources at [testDir]/[testName]Input.dex
50 * and [testDir]/[testName]Output.smali respectively
55 protected String getOutputFilename(@Nonnull String testName) {
56 return String.format("%s%s%sOutput.smali", testDir, File.separatorChar, testName);
59 protected void runTest(@Nonnull String testName) {
60 runTest(testName, new BaksmaliOptions());
63 protected void runTest(@Nonnull String testName, @Nonnull BaksmaliOptions options) {
65 DexBackedDexFile inputDex = getInputDexFile(testName, options);
71 String output = BaksmaliTestUtils.readResourceFully(getOutputFilename(testName));
DexTest.java 49 * [testDir]/[testName]Input.dex
63 protected String getInputFilename(@Nonnull String testName) {
64 return String.format("%s%s%sInput.dex", testDir, File.separatorChar, testName);
68 protected DexBackedDexFile getInputDexFile(@Nonnull String testName, @Nonnull BaksmaliOptions options) {
71 byte[] inputBytes = BaksmaliTestUtils.readResourceBytesFully(getInputFilename(testName));
  /external/junit/src/main/java/junit/runner/
TestRunListener.java 20 public void testStarted(String testName);
22 public void testEnded(String testName);
24 public void testFailed(int status, String testName, String trace);
  /external/testng/src/test/java/test/name/
ITestSample.java 13 public ThreadLocal<String> testName = new ThreadLocal<>();
25 public void run(String testName) {
26 Assert.assertEquals(testName, this.testName.get());
31 testName.set((String) testArgs[0]);
36 Assert.assertEquals((String) testArgs[0], this.testName.get());
41 return testName.get();
NameSample.java 6 @Test(testName = "NAME")
  /external/skia/tests/
TestUtils.h 18 const char* testName);
23 GrSurfaceContext* srcContext, bool expectedToWork, const char* testName);
29 bool onlyTestRTConfig, const char* testName);
33 GrSurfaceContext* dstContext, const char* testName);
PathOpsInverseTest.cpp 26 SkString testName;
27 testName.printf("inverseTest%d", ++testCount);
28 testPathOp(reporter, one, two, (SkPathOp) op, testName.c_str());
  /external/skqp/tests/
TestUtils.h 18 const char* testName);
23 GrSurfaceContext* srcContext, bool expectedToWork, const char* testName);
29 bool onlyTestRTConfig, const char* testName);
33 GrSurfaceContext* dstContext, const char* testName);
PathOpsInverseTest.cpp 26 SkString testName;
27 testName.printf("inverseTest%d", ++testCount);
28 testPathOp(reporter, one, two, (SkPathOp) op, testName.c_str());
  /external/testng/src/test/java/test/reports/
A.java 5 @Test(suiteName = "SuiteA-JDK5", testName = "TestA-JDK5")
  /external/antlr/gunit/src/test/java/org/antlr/gunit/
GunitTest.java 16 * @param testName name of the test case
18 public GunitTest( String testName )
20 super( testName );
  /external/mockito/src/main/java/org/mockito/internal/junit/
StubbingHint.java 14 StubbingHint(String testName) {
16 .append(testName).append(" (see javadoc for MockitoHint):");
  /cts/tests/tests/media/src/android/media/cts/
VolumeShaperTest.java 213 private static void checkEqual(String testName,
215 assertEquals(testName + " configuration should be equal",
217 assertEquals(testName + " configuration.hashCode() should be equal",
219 assertEquals(testName + " configuration.toString() should be equal",
223 private static void checkNotEqual(String testName,
225 assertTrue(testName + " configuration should not be equal",
227 assertTrue(testName + " configuration.hashCode() should not be equal",
229 assertTrue(testName + " configuration.toString() should not be equal",
567 final String testName = TEST_NAME + " " + player.name();
574 fail(testName + " should not be able to create
    [all...]
  /cts/tests/tests/uirendering/src/android/uirendering/cts/util/
BitmapDumper.java 44 public static void deleteFileInClassFolder(String className, String testName) {
52 if (file.startsWith(testName)) {
73 public static void dumpBitmaps(Bitmap idealBitmap, Bitmap testedBitmap, String testName,
88 saveFile(className, testName, IDEAL_RENDERING_FILE_NAME, idealBitmap);
89 saveFile(className, testName, TESTED_RENDERING_FILE_NAME, croppedBitmap);
90 saveFile(className, testName, VISUALIZER_RENDERING_FILE_NAME, visualizerBitmap);
93 public static void dumpBitmap(Bitmap bitmap, String testName, String className) {
95 Log.d(TAG, "File not saved, bitmap was null for test : " + testName);
98 saveFile(className, testName, SINGULAR_FILE_NAME, bitmap);
101 private static void saveFile(String className, String testName, String fileName, Bitmap bitmap)
    [all...]
  /cts/tests/tests/uirendering27/src/android/uirendering/cts/util/
BitmapDumper.java 44 public static void deleteFileInClassFolder(String className, String testName) {
52 if (file.startsWith(testName)) {
73 public static void dumpBitmaps(Bitmap idealBitmap, Bitmap testedBitmap, String testName,
88 saveFile(className, testName, IDEAL_RENDERING_FILE_NAME, idealBitmap);
89 saveFile(className, testName, TESTED_RENDERING_FILE_NAME, croppedBitmap);
90 saveFile(className, testName, VISUALIZER_RENDERING_FILE_NAME, visualizerBitmap);
93 public static void dumpBitmap(Bitmap bitmap, String testName, String className) {
95 Log.d(TAG, "File not saved, bitmap was null for test : " + testName);
98 saveFile(className, testName, SINGULAR_FILE_NAME, bitmap);
101 private static void saveFile(String className, String testName, String fileName, Bitmap bitmap)
    [all...]
  /cts/tests/autofillservice/src/android/autofillservice/cts/
AutofillLoggingTestRule.java 57 final String testName = description.getDisplayName();
65 dump(testName, t);
73 Log.v(TAG, "@After " + testName);
81 public void dump(@NonNull String testName, @NonNull Throwable t) {
83 Log.e(mTag, "dump(" + testName + "): already dumped");
92 Log.e(mTag, "Dumping after exception on " + testName, t);
  /external/icu/icu4c/source/test/intltest/
testidna.h 74 void testToASCII(const char* testName, TestFunc func);
75 void testToUnicode(const char* testName, TestFunc func);
76 void testIDNToUnicode(const char* testName, TestFunc func);
77 void testIDNToASCII(const char* testName, TestFunc func);
78 void testCompare(const char* testName, CompareFunc func);
83 void testAPI(const UChar *src, const UChar *expected, const char *testName,
89 const char* testName, CompareFunc func,
95 void testChaining(const UChar* src,int32_t numIterations,const char* testName,
98 void testRootLabelSeparator(const char* testName, CompareFunc func,
listformattertest.h 61 const char* testName);
73 const char* testName);
81 const char* testName);
90 const char* testName);
98 const char* testName);
106 const char* testName);
  /cts/tests/contentcaptureservice/src/android/contentcaptureservice/cts/
ContentCaptureLoggingTestRule.java 53 final String testName = description.getDisplayName();
57 dump(testName, t);
65 public void dump(@NonNull String testName, @NonNull Throwable t) {
67 Log.e(TAG, "dump(" + testName + "): already dumped");
78 Log.e(TAG, "Dumping after exception on " + testName, t);
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/
TestListAdapter.java 86 final String testName;
103 public static TestListItem newTest(Context context, int titleResId, String testName,
106 return newTest(context.getString(titleResId), testName, intent, requiredFeatures,
110 public static TestListItem newTest(Context context, int titleResId, String testName,
112 return newTest(context.getString(titleResId), testName, intent, requiredFeatures,
116 public static TestListItem newTest(Context context, int titleResId, String testName,
118 return newTest(context.getString(titleResId), testName, intent, requiredFeatures, null,
122 public static TestListItem newTest(String title, String testName, Intent intent,
125 return new TestListItem(title, testName, intent, requiredFeatures, requiredConfigs,
129 public static TestListItem newTest(String title, String testName, Intent intent
    [all...]
  /external/icu/icu4c/source/test/cintltst/
trie2test.c 98 testTrieEnum(const char *testName,
111 testTrieGetters(const char *testName,
140 typeName, testName, (long)start, (long)value2, (long)value);
151 typeName, testName, (long)start, (long)value2, (long)value);
161 typeName, testName, (long)start, (long)value2, (long)value);
167 typeName, testName, (long)start, (long)value2, (long)value);
188 typeName, testName, (long)start, (long)value2, (long)value);
201 typeName, testName, (long)start, (long)value2, (long)errorValue);
207 if(0!=strncmp(testName, "dummy", 5) && 0!=strncmp(testName, "trie1", 5))
    [all...]

Completed in 4922 milliseconds

1 2 3 4 5 6 7 8 91011>>