README
1Building and Running Tests -
2
3Currently the Profiling module is considered a packaged APEX and is not currently configured to run
4on the mts infrastructure. Please use CTS/ATEST in order to run tests.
5
6The example below will run all tests defined in the module.
7atest [ModuleName]
8ex - atest CtsProfilingModuleTests
9
10This will run all tests in a specific test class.
11atest [ModuleName]:[Package].[Class]
12ex - atest CtsProfilingModuleTests:android.profiling.cts.ProfilingFrameworkTests
13
14This will run a specific method from a test class.
15atest [ModuleName]:[Package].[Class]#[Method]
16ex - atest
17 CtsProfilingModuleTests:android.profiling.cts.ProfilingFrameworkTests#createProfilingRequestTest
18