Files
sdk/tests/corelib/apply_generic_function_test.dart
T
Martin Kustermann 76548a7ab9 [tests] Rewrite various tests to not depend on <obj>.runtimeType.toString()
In dart2wasm applications are by default deployed in `-O2` mode which
implies `--minify`.

Given this is the default configuration for customers, we want good
testing of this configuration and not large numbers of approved failures.

=> Rewrite various tests to not depend on `<obj>.runtimeType.toString()`

Change-Id: I1108b28c63b8bec6ad94df0d7b878b3339776df9
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/436281
Reviewed-by: Lasse Nielsen <lrn@google.com>
Commit-Queue: Martin Kustermann <kustermann@google.com>
2025-06-24 01:16:24 -07:00

20 lines
630 B
Dart

// Copyright (c) 2018, 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:expect/expect.dart";
// Testing Function.apply calls correctly with generic type arguments.
// This test is not testing error handling, only that correct parameters
// cause a correct call.
test0<T extends num>(T i, T j, {required T a}) => i + j + a;
main() {
test(res, func, list, map) {
Expect.equals(res, Function.apply(func, list, map));
}
test(42, test0, [10, 15], {#a: 17});
}