README
1/*
2 * Copyright (C) 2024 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17Building and Running Tests -
18
19Currently the Profiling module is considered a packaged APEX and is not currently configured to run
20on the mts infrastructure. Please use CTS/ATEST in order to run tests.
21
22The example below will run all tests defined in the module.
23atest [ModuleName]
24ex - atest CtsProfilingModuleTests
25
26This will run all tests in a specific test class.
27atest [ModuleName]:[Package].[Class]
28ex - atest CtsProfilingModuleTests:android.profiling.cts.ProfilingFrameworkTests
29
30This will run a specific method from a test class.
31atest [ModuleName]:[Package].[Class]#[Method]
32ex - atest
33 CtsProfilingModuleTests:android.profiling.cts.ProfilingFrameworkTests#createProfilingRequestTest
34