| // Copyright 2014 The Flutter Authors. All rights reserved. |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| |
| import 'test_device.dart'; |
| |
| /// Callbacks for reporting progress while running tests. |
| abstract class TestWatcher { |
| /// Called after the test device starts. |
| /// |
| /// If startPaused was true, the caller needs to resume in Observatory to |
| /// start running the tests. |
| void handleStartedDevice(Uri? observatoryUri) { } |
| |
| /// Called after the tests finish but before the test device exits. |
| /// |
| /// The test device won't exit until this method completes. |
| /// Not called if the test device died. |
| Future<void> handleFinishedTest(TestDevice testDevice); |
| |
| /// Called when the test device crashed before it could be connected to the |
| /// test harness. |
| Future<void> handleTestCrashed(TestDevice testDevice); |
| |
| /// Called if we timed out waiting for the test device to connect to test |
| /// harness. |
| Future<void> handleTestTimedOut(TestDevice testDevice); |
| } |