|
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);
|
|
});
|
|
}
|