yx_async_throttle_flutter/test/yx_async_throttle_flutter_t...

11 lines
270 B
Dart

import 'package:flutter_test/flutter_test.dart';
import 'package:yx_async_throttle_flutter/yx_async_throttle_flutter.dart';
void main() {
test('AsyncThrottle instance check', () {
final throttle = AsyncThrottle.instance;
expect(throttle, isNotNull);
});
}