- Add VariableSpec class with magnitude field validation - Add Formula class supporting multiple input/output variables - Support d4rt_code as string or object with code field - Add comprehensive tests for parsing and serialization - Fix broken test import in pruebas_d4rt_test.dart Follows README.md format requirements exactly
33 lines
1.1 KiB
Dart
33 lines
1.1 KiB
Dart
// 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.
|
|
|
|
import 'package:test_reflective_loader/test_reflective_loader.dart';
|
|
|
|
import 'dart/test_all.dart' as dart;
|
|
import 'error/test_all.dart' as error;
|
|
import 'file_system/test_all.dart' as file_system;
|
|
import 'generated/test_all.dart' as generated;
|
|
import 'instrumentation/test_all.dart' as instrumentation;
|
|
import 'source/test_all.dart' as source;
|
|
import 'src/test_all.dart' as src;
|
|
import 'utilities/test_all.dart' as utilities;
|
|
import 'verify_diagnostics_test.dart' as verify_diagnostics;
|
|
import 'verify_docs_test.dart' as verify_docs;
|
|
import 'verify_tests_test.dart' as verify_tests;
|
|
|
|
main() {
|
|
defineReflectiveSuite(() {
|
|
dart.main();
|
|
error.main();
|
|
file_system.main();
|
|
generated.main();
|
|
instrumentation.main();
|
|
source.main();
|
|
src.main();
|
|
utilities.main();
|
|
verify_diagnostics.main();
|
|
verify_docs.main();
|
|
verify_tests.main();
|
|
}, name: 'analyzer');
|
|
}
|