From c0f8d05b006fb537a7cdf370e3f7c95fdb3a278b Mon Sep 17 00:00:00 2001 From: Rob Becker Date: Mon, 2 Mar 2026 13:49:27 -0700 Subject: [PATCH] Deprecate verifyDisposableTypeName --- w_common/lib/test_utils.dart | 1 + 1 file changed, 1 insertion(+) diff --git a/w_common/lib/test_utils.dart b/w_common/lib/test_utils.dart index 559adac7..93056281 100644 --- a/w_common/lib/test_utils.dart +++ b/w_common/lib/test_utils.dart @@ -17,6 +17,7 @@ import 'package:w_common/disposable.dart'; /// By default, it will assert that the `disposableTypeName` matches the /// simple class name. It will also return the [Symbol] that represents /// the class name. +@Deprecated("Will be removed in 4.0.0") Symbol verifyDisposableTypeName(Disposable object, {bool makeAssertion = true}) { final type = reflect(object).type.simpleName;