blob: 8acc32488c3438bc657336df111b98a52f5089d4 [file] [log] [blame]
// Copyright 2020 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
package org.chromium.build.gtest_apk;
/** Intent action and extras of broadcasts intercepted by TestStatusReceiver. */
public class TestStatusIntent {
public static final String ACTION_TEST_RUN_STARTED =
"org.chromium.test.reporter.TestStatusReporter.TEST_RUN_STARTED";
public static final String ACTION_TEST_RUN_FINISHED =
"org.chromium.test.reporter.TestStatusReporter.TEST_RUN_FINISHED";
public static final String ACTION_UNCAUGHT_EXCEPTION =
"org.chromium.test.reporter.TestStatusReporter.UNCAUGHT_EXCEPTION";
public static final String DATA_TYPE_RESULT = "org.chromium.test.reporter/result";
public static final String EXTRA_PID = "org.chromium.test.reporter.TestStatusReporter.PID";
public static final String EXTRA_STACK_TRACE =
"org.chromium.test.reporter.TestStatusReporter.STACK_TRACE";
}