blob: 9122f140100d52dee5d6623b8dbdf9aaa6f148e7 [file] [log] [blame]
// Copyright (c) 2014, 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 file.
library test.computer.all;
import 'package:unittest/unittest.dart';
import 'element_test.dart' as element_test;
import 'error_test.dart' as error_test;
/**
* Utility for manually running all tests.
*/
main() {
groupSep = ' | ';
group('computer', () {
element_test.main();
error_test.main();
});
}