File tree Expand file tree Collapse file tree 4 files changed +21
-0
lines changed
pkgs/native_assets_builder/test_data Expand file tree Collapse file tree 4 files changed +21
-0
lines changed Original file line number Diff line number Diff line change 179179- use_all_api/hook/build.dart
180180- use_all_api/hook/link.dart
181181- use_all_api/pubspec.yaml
182+ - user_defines/bin/user_defines.dart
182183- user_defines/hook/build.dart
183184- user_defines/pubspec.yaml
185+ - user_defines/test/user_defines_test.dart
184186- wrong_build_output/hook/build.dart
185187- wrong_build_output/pubspec.yaml
186188- wrong_build_output_2/hook/build.dart
Original file line number Diff line number Diff line change 1+ // Copyright (c) 2025, the Dart project authors. Please see the AUTHORS file
2+ // for details. All rights reserved. Use of this source code is governed by a
3+ // BSD-style license that can be found in the LICENSE file.
4+
5+ void main () {
6+ print ('Hello world!' );
7+ }
Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ dependencies:
1414
1515dev_dependencies :
1616 lints : ^5.1.1
17+ test : ^1.25.15
1718
1819hooks :
1920 user_defines :
Original file line number Diff line number Diff line change 1+ // Copyright (c) 2025, the Dart project authors. Please see the AUTHORS file
2+ // for details. All rights reserved. Use of this source code is governed by a
3+ // BSD-style license that can be found in the LICENSE file.
4+
5+ import 'package:test/test.dart' ;
6+
7+ void main () {
8+ test ('my test' , () {
9+ expect (1 , equals (1 ));
10+ });
11+ }
You can’t perform that action at this time.
0 commit comments