mirror of
https://github.com/rrousselGit/riverpod.git
synced 2025-08-15 02:06:53 +08:00
13 lines
311 B
Dart
13 lines
311 B
Dart
// ignore_for_file: unused_local_variable
|
|
|
|
import 'package:flutter_riverpod/flutter_riverpod.dart';
|
|
import 'package:flutter_test/flutter_test.dart';
|
|
|
|
void main() {
|
|
testWidgets('Some description', (tester) async {
|
|
/* SNIPPET START */
|
|
final container = tester.container();
|
|
/* SNIPPET END */
|
|
});
|
|
}
|