From 8637121ac29bb4c41ffd4bf75e2873f8edb1a775 Mon Sep 17 00:00:00 2001 From: Google APIs Date: Tue, 13 Jun 2023 13:14:41 -0700 Subject: [PATCH] feat: added RoboStartingIntent.no_activity PiperOrigin-RevId: 540051944 --- google/devtools/testing/v1/test_execution.proto | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/google/devtools/testing/v1/test_execution.proto b/google/devtools/testing/v1/test_execution.proto index 19293f0f6..71a50776d 100644 --- a/google/devtools/testing/v1/test_execution.proto +++ b/google/devtools/testing/v1/test_execution.proto @@ -706,6 +706,9 @@ message RoboStartingIntent { // An intent that starts an activity with specific details. StartActivityIntent start_activity = 2; + + // Skips the starting activity + NoActivityIntent no_activity = 4; } // Timeout in seconds for each intent. @@ -728,6 +731,9 @@ message StartActivityIntent { repeated string categories = 4; } +// Skips the starting activity +message NoActivityIntent {} + // The matrix of environments in which the test is to be executed. message EnvironmentMatrix { // Required. The environment matrix.