Lines Matching refs:a

5 This is often the result of a logic error in the code and difficult to identify because the issue i…
18 ## Building a transition
22 // Example: Build a transition that cold launches an app from launcher
24 // Specify a tag to identify the transition (optional)
32 // Press the home button and close the app to test a cold start
50 Run the transition to get a list of `TransitionResult` for each time the transition is repeated.
60 Each trace can be represented as a ordered collection of trace entries, with an associated timestam…
71 // check a range of entries
80 // check a change in assertions, e.g. wallpaper window is visible,
89 All assertions return `Result` which contains a `success` flag, `assertionName` string identifier, …
91 Failed assertion message will also contain a path to the trace that was tested.
92 Example of a failed test:
120 … and stopped after the transition is completed. Each iteration will produce a new test artifact. T…
123 Captures Layers trace. This monitor is started by default. Build a transition with `skipLayersTrace…
125 Captures Window Manager trace. This monitor is started by default. Build a transition with `skipWin…
127 … empty after all iterations are completed, then the test should fail. Build a transition with `inc…
129 Captures screen to a video file. This monitor is disabled by default. Build a transition with `reco…
135 To add a new assertion, add a function to one of the trace entry classes, `LayersTrace.Entry` or `W…
140 // Result should contain a details if assertion fails for any reason
146 Then add a function to the trace subject `LayersTraceSubject` or `WmTraceSubject` which will add th…