File tree 4 files changed +21
-0
lines changed
pkgs/native_assets_builder/test_data
4 files changed +21
-0
lines changed Original file line number Diff line number Diff line change 179
179
- use_all_api/hook/build.dart
180
180
- use_all_api/hook/link.dart
181
181
- use_all_api/pubspec.yaml
182
+ - user_defines/bin/user_defines.dart
182
183
- user_defines/hook/build.dart
183
184
- user_defines/pubspec.yaml
185
+ - user_defines/test/user_defines_test.dart
184
186
- wrong_build_output/hook/build.dart
185
187
- wrong_build_output/pubspec.yaml
186
188
- 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:
14
14
15
15
dev_dependencies :
16
16
lints : ^5.1.1
17
+ test : ^1.25.15
17
18
18
19
hooks :
19
20
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