/// Search Provider Tests library; import 'package:flutter_test/flutter_test.dart'; import 'package:flutter_riverpod/flutter_riverpod.dart'; import 'package:spotify_le_2/presentation/providers/search_provider.dart'; void main() { group('SearchNotifier', () { // TODO: Setup mock MusicApiService test('initial state is empty', () { // TODO: Implement test }); test('search updates state with results', () { // TODO: Implement test with mocked API }); test('search debounces input', () async { // TODO: Test that debounce timer works correctly }); test('clear resets state', () { // TODO: Test clear functionality }); }); }