From be71bb45d522b2d68b85b79312cfcfcfdeb871a3 Mon Sep 17 00:00:00 2001 From: Mikhail Zotyev Date: Sun, 28 Jul 2024 18:21:01 +0200 Subject: [PATCH] Fix: description for testing mixins. (#106) --- packages/elementary/lib/src/core.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/elementary/lib/src/core.dart b/packages/elementary/lib/src/core.dart index 36d3df54..86f4de69 100644 --- a/packages/elementary/lib/src/core.dart +++ b/packages/elementary/lib/src/core.dart @@ -587,7 +587,7 @@ abstract class ElementaryModel { } } -/// Mock that helps to prevent [NoSuchMethodError] exception when the +/// Mixin that helps to prevent [NoSuchMethodError] exception when the /// ElementaryModel is mocked. @visibleForTesting mixin MockElementaryModelMixin implements ElementaryModel { @@ -595,7 +595,7 @@ mixin MockElementaryModelMixin implements ElementaryModel { set _wmHandler(void Function(Object)? _) {} } -/// Mock that helps to prevent [NoSuchMethodError] exception when the +/// Mixin that helps to prevent [NoSuchMethodError] exception when the /// WidgetModel is mocked. @visibleForTesting mixin MockWidgetModelMixin