dart-sdk/pkg/testing/lib/testing.dart
Peter von der Ahé b2d7397a0c Add testing chain to validate messages.yaml
Change-Id: I34bf0a4bbbd9dab1133a69c844033035b7edb8db
Reviewed-on: https://dart-review.googlesource.com/43969
Commit-Queue: Peter von der Ahé <ahe@google.com>
Reviewed-by: Dan Rubel <danrubel@google.com>
2018-02-28 11:02:23 +00:00

21 lines
609 B
Dart

// Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE.md file.
library testing;
export 'dart:async' show Future;
export 'src/discover.dart';
export 'src/test_description.dart'
show FileBasedTestDescription, TestDescription;
export 'src/chain.dart' show Chain, ChainContext, Result, Step;
export 'src/stdio_process.dart' show StdioProcess;
export 'src/run.dart' show run, runMe;
export 'src/expectation.dart' show Expectation, ExpectationSet;