Home
last modified time | relevance | path

Searched defs:testName (Results 1 – 25 of 201) sorted by relevance

123456789

/ohos5.0/foundation/multimedia/image_framework/frameworks/innerkitsimpl/test/unittest/image_source_test/
H A Dimage_source_gif_ex_test.cpp67 const std::string testName = TEST_FILE_SINGLE_FRAME_GIF; variable
102 const std::string testName = TEST_FILE_MULTI_FRAME_GIF; variable
137 const std::string testName = TEST_FILE_JPG; variable
172 const std::string testName = TEST_FILE_MULTI_FRAME_GIF; variable
201 const std::string testName = TEST_FILE_SINGLE_FRAME_GIF; variable
230 const std::string testName = TEST_FILE_MULTI_FRAME_GIF; variable
259 const std::string testName = TEST_FILE_JPG; variable
311 const std::string testName = TEST_FILE_MULTI_FRAME_GIF; variable
339 const std::string testName = TEST_FILE_JPG; variable
409 const std::string testName = TEST_FILE_JPG; variable
[all …]
H A Dimage_source_svg_test.cpp47 const std::string testName = TEST_FILE_SVG; variable
90 const std::string testName = TEST_FILE_LARGE_SVG; variable
133 const std::string testName = TEST_FILE_SVG; variable
178 const std::string testName = TEST_FILE_SVG; variable
223 const std::string testName = TEST_FILE_SVG; variable
268 const std::string testName = TEST_FILE_SVG; variable
320 const std::string testName = TEST_FILE_SVG; variable
/aosp12/frameworks/base/test-runner/tests/src/android/test/suitebuilder/
H A DUnitTestSuiteBuilderTest.java88 public boolean saw(String testName) { in saw()
92 public boolean failed(String testName) { in failed()
96 public boolean errored(String testName) { in errored()
100 public boolean passed(String testName) { in passed()
104 private String testName(Test test) { in testName() method in UnitTestSuiteBuilderTest.SuiteExecutionRecorder
H A DListTestCaseNames.java51 String testName = ((TestCase) test).getName(); in getTestNames() local
67 public TestDescriptor(String className, String testName) { in TestDescriptor()
/aosp14/frameworks/base/test-runner/tests/src/android/test/suitebuilder/
H A DUnitTestSuiteBuilderTest.java88 public boolean saw(String testName) { in saw()
92 public boolean failed(String testName) { in failed()
96 public boolean errored(String testName) { in errored()
100 public boolean passed(String testName) { in passed()
104 private String testName(Test test) { in testName() method in UnitTestSuiteBuilderTest.SuiteExecutionRecorder
H A DListTestCaseNames.java51 String testName = ((TestCase) test).getName(); in getTestNames() local
67 public TestDescriptor(String className, String testName) { in TestDescriptor()
/ohos5.0/base/global/resource_management/test/fuzztest/resmgr_fuzzer/
H A Dresmgr_fuzzer.cpp37 std::string testName(data, size); in AddResourceFuzzTest() local
48 std::string testName(data, size); in RemoveResourceFuzzTest() local
58 std::string testName(data, size); in AddAppOverlayFuzzTest() local
68 std::string testName(data, size); in RemoveAppOverlayFuzzTest() local
89 std::string testName(data, size); in GetStringByNameFuzzTest() local
111 std::string testName(data, size); in GetStringArrayByNameFuzzTest() local
133 std::string testName(data, size); in GetPatternByNameFuzzTest() local
155 std::string testName(data, size); in GetPluralStringByNameFuzzTest() local
177 std::string testName(data, size); in GetThemeByNameFuzzTest() local
199 std::string testName(data, size); in GetIntegerByNameFuzzTest() local
[all …]
/aosp12/frameworks/base/test-runner/src/junit/runner/
H A DTestRunListener.java17 public void testStarted(String testName); in testStarted()
18 public void testEnded(String testName); in testEnded()
19 public void testFailed(int status, String testName, String trace); in testFailed()
/aosp14/frameworks/base/test-runner/src/junit/runner/
H A DTestRunListener.java17 public void testStarted(String testName); in testStarted()
18 public void testEnded(String testName); in testEnded()
19 public void testFailed(int status, String testName, String trace); in testFailed()
/ohos5.0/drivers/peripheral/power/test/unittest/src/
H A Dhdf_power_hdi_test.cpp114 std::string testName = "HdfPowerHdiTest005"; variable
139 std::string testName = "HdfPowerHdiTest006"; variable
165 std::string testName = "HdfPowerHdiTest007"; variable
181 std::string testName = "HdfPowerHdiTest008"; variable
/ohos5.0/base/hiviewdfx/hiview/plugins/eventlogger/test/unittest/common/
H A Devent_logger_test.cpp111 std::string testName = "EventLoggerTest_002"; variable
253 std::string testName = "GET_DISPLAY_SNAPSHOT"; variable
370 std::string testName = "FREQUENT_CLICK_WARNING"; variable
397 std::string testName = "EventLoggerTest_011"; variable
428 std::string testName = "EventLoggerTest_012"; variable
458 std::string testName = "EventLoggerTest_013"; variable
527 std::string testName = "EventLoggerTest_016"; variable
558 std::string testName = "EventLoggerTest_017"; variable
/ohos5.0/foundation/multimedia/camera_framework/interfaces/inner_api/native/test/
H A Dtest_common.cpp136 TestCameraMngerCallback::TestCameraMngerCallback(const char* testName) : testName_(testName) { in TestCameraMngerCallback()
153 TestDeviceCallback::TestDeviceCallback(const char* testName) : testName_(testName) { in TestDeviceCallback()
163 TestOnResultCallback::TestOnResultCallback(const char* testName) : testName_(testName) { in TestOnResultCallback()
175 TestPhotoOutputCallback::TestPhotoOutputCallback(const char* testName) : testName_(testName) { in TestPhotoOutputCallback()
222 TestPreviewOutputCallback::TestPreviewOutputCallback(const char* testName) : testName_(testName) { in TestPreviewOutputCallback()
248 TestVideoOutputCallback::TestVideoOutputCallback(const char* testName) : testName_(testName) { in TestVideoOutputCallback()
273 TestMetadataOutputObjectCallback::TestMetadataOutputObjectCallback(const char* testName) : testName… in TestMetadataOutputObjectCallback()
320 SurfaceListener::SurfaceListener(const char* testName, SurfaceType type, int32_t &fd, sptr<IConsume… in SurfaceListener()
/aosp12/packages/modules/Connectivity/tests/cts/hostside/app/src/com/android/cts/net/hostside/
H A DRequiredPropertiesRule.java41 final String testName = description.getClassName() + "#" + description.getMethodName(); in onBefore() local
73 private void assertTestIsValid(String testName, ArraySet<Property> requiredProperies) { in assertTestIsValid()
/aosp12/art/test/800-smali/src/
H A DMain.java29 public TestCase(String testName, String testClass, String testMethodName, Object[] values, in TestCase()
41 public TestCase(String testName, String testClass, String testMethodName, Object[] values, in TestCase()
47 String testName; field in Main.TestCase
/aosp12/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/hotspot2/soap/
H A DHttpsServiceConnectionTest.java213 String testName = "Connection"; in verifyNotUpdatingRequestPropertyForIgnorableProperty() local
227 String testName = "Content-Type"; in verifyCallingSetRequestPropertyForProperty() local
/ohos5.0/foundation/filemanagement/dfs_service/services/distributedfiledaemon/test/unittest/network/softbus/
H A Dsoftbus_session_pool_test.cpp106 std::string testName = std::string(SESSION_NAME_PREFIX) + std::to_string(i); variable
117 std::string testName = std::string(SESSION_NAME_PREFIX) + std::to_string(i); variable
/aosp12/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/audio/
H A DMediaVirtualizerTest.java71 private void log(String testName, String message) { in log()
75 private void loge(String testName, String message) { in loge()
H A DMediaBassBoostTest.java71 private void log(String testName, String message) { in log()
75 private void loge(String testName, String message) { in loge()
/aosp14/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/audio/
H A DMediaVirtualizerTest.java71 private void log(String testName, String message) { in log()
75 private void loge(String testName, String message) { in loge()
H A DMediaBassBoostTest.java71 private void log(String testName, String message) { in log()
75 private void loge(String testName, String message) { in loge()
/ohos5.0/foundation/graphic/graphic_2d/graphic_test/graphic_test_framework/src/
H A Drs_graphic_test_ext.cpp21 std::string GetTestName(const char* testCaseName, const char* testName) in GetTestName()
33 bool TestDefManager::Regist(const char* testCaseName, const char* testName, in Regist()
/ohos5.0/base/notification/distributed_notification_service/frameworks/test/moduletest/mock/
H A Dremote_native_token.cpp20 void RemoteNativeToken::SetNativeToken(std::string testName) in SetNativeToken()
/aosp12/frameworks/base/apct-tests/perftests/autofill/src/android/view/autofill/
H A DAutofillTestWatcher.java52 final String testName = description.getDisplayName(); in starting() local
68 final String testName = description.getDisplayName(); in finished() local
/aosp14/frameworks/base/apct-tests/perftests/autofill/src/android/view/autofill/
H A DAutofillTestWatcher.java52 final String testName = description.getDisplayName(); in starting() local
68 final String testName = description.getDisplayName(); in finished() local
/ohos5.0/foundation/multimedia/av_codec/test/unittest/hls_test/
H A Dm3u8_unit_test.h51 std::string testName = "test.m3u8"; variable

123456789