Home | History | Annotate | Download | only in base

Lines Matching defs:testType

61 var testType = arguments[5];
62 if (testType != 'extension' &&
63 testType != 'unit' &&
64 testType != 'webui') {
65 print('Invalid test type: ' + testType);
70 * C++ gtest macro to use for TEST_F depending on |testType|.
91 * |testType| === 'webui' to send an injection message before the page loads,
123 // Output some C++ headers based upon the |testType|.
131 if (testType === 'extension') {
136 } else if (testType === 'unit') {
331 var isAsyncParam = testType === 'unit' ? '' :