OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:testCaseName
(Results
1 - 11
of
11
) sorted by null
/external/webkit/Tools/WebKitAPITest/
Test.h
40
#define TEST_CLASS_NAME(
testCaseName
, testName)
testCaseName
##_##testName##_Test
43
#define TEST(
testCaseName
, testName) \
44
class TEST_CLASS_NAME(
testCaseName
, testName) : public Test { \
46
virtual const char* name() const { return #
testCaseName
": " #testName; } \
51
const bool TEST_CLASS_NAME(
testCaseName
, testName)::initialized = (TestsController::shared().addTest(new TEST_CLASS_NAME(
testCaseName
, testName)), true); \
53
void TEST_CLASS_NAME(
testCaseName
, testName)::run()
/external/webkit/Tools/TestWebKitAPI/
Test.h
64
#define TEST_CLASS_NAME(testSuite,
testCaseName
) testSuite##
testCaseName
##_Test
65
#define TEST_REGISTRAR_NAME(testSuite,
testCaseName
) testSuite##
testCaseName
##_Registrar
68
#define TEST(testSuite,
testCaseName
) \
69
class TEST_CLASS_NAME(testSuite,
testCaseName
) : public Test { \
71
TEST_CLASS_NAME(testSuite,
testCaseName
)(const std::string& identifier) \
78
static Test::Register<TEST_CLASS_NAME(testSuite,
testCaseName
)> TEST_REGISTRAR_NAME(testSuite,
testCaseName
)(#testSuite, #
testCaseName
); \
[
all
...]
/development/cmds/monkey/src/com/android/commands/monkey/
MonkeyInstrumentationEvent.java
34
public MonkeyInstrumentationEvent(String
testCaseName
, String runnerName) {
36
mTestCaseName =
testCaseName
;
MonkeyGetFrameRateEvent.java
55
public MonkeyGetFrameRateEvent(String status, String
testCaseName
) {
58
mTestCaseName =
testCaseName
;
/cts/tools/host/src/com/android/cts/
Selector.java
306
for (String
testCaseName
: mRecords) {
307
if (!isSelected(selectedList,
testCaseName
)) {
308
Selection select = doAccept(
testCaseName
);
310
excludedTestCases.add(
testCaseName
);
312
List<String> testNames = mTestPackage.getAllTestNames(
testCaseName
);
321
Log.i("testCase=" +
testCaseName
+ " has been removed all");
322
excludedTestCases.add(
testCaseName
);
327
selectedList.add(
testCaseName
);
TestPackage.java
211
String
testCaseName
= testCase.getFullName();
212
if (
testCaseName
.startsWith(expectName)) {
213
String suiteName =
testCaseName
.substring(0,
testCaseName
.lastIndexOf("."));
215
if (!caseNameList.contains(
testCaseName
)) {
216
caseNameList.add(
testCaseName
);
235
String
testCaseName
= testCase.getFullName();
236
String suiteName =
testCaseName
.substring(0,
testCaseName
.lastIndexOf("."));
285
String
testCaseName
= testCase.getFullName()
[
all
...]
/cts/tools/tradefed-host/src/com/android/cts/tradefed/result/
TestSuite.java
121
* @param
testCaseName
124
private TestCase getTestCase(String
testCaseName
) {
125
TestCase testCase = mChildTestCaseMap.get(
testCaseName
);
127
testCase = new TestCase(
testCaseName
);
128
mChildTestCaseMap.put(
testCaseName
, testCase);
TestCase.java
44
* @param
testCaseName
46
public TestCase(String
testCaseName
) {
47
setName(
testCaseName
);
TestPackageResult.java
112
String
testCaseName
= classNameSegments.remove(classNameSegments.size()-1);
113
return mSuiteRoot.findTest(classNameSegments,
testCaseName
, testId.getTestName(), insertIfMissing);
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/performance/
VideoEditorPerformance.java
101
private void writeTimingInfo(String
testCaseName
, String[] information)
105
output.write(
testCaseName
+ "\n\t");
[
all
...]
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/stress/
VideoEditorStressTest.java
134
private void writeTestCaseHeader(String
testCaseName
)
138
output.write("\n\n" +
testCaseName
+ "\n");
[
all
...]
Completed in 185 milliseconds