platform/packages/notifications/test/protevus_notifications_test.dart
2024-06-21 21:36:52 -07:00

16 lines
328 B
Dart

import 'package:protevus_notifications/protevus_notifications.dart';
import 'package:test/test.dart';
void main() {
group('A group of tests', () {
final awesome = Awesome();
setUp(() {
// Additional setup goes here.
});
test('First Test', () {
expect(awesome.isAwesome, isTrue);
});
});
}