Skip to content

Commit

Permalink
Restore deleted test
Browse files Browse the repository at this point in the history
  • Loading branch information
rrousselGit committed Oct 28, 2023
1 parent adf545e commit 756bb26
Showing 1 changed file with 28 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
import 'package:build_yaml/main.dart';
import 'package:test/test.dart';

void main() {
test('provider names', () {
expect(countPod.name, 'countPod');
expect(countFuturePod.name, 'countFuturePod');
expect(countStreamPod.name, 'countStreamPod');
expect(countNotifierPod.name, 'countNotifierPod');
expect(countAsyncNotifierPod.name, 'countAsyncNotifierPod');
expect(countStreamNotifierPod.name, 'countStreamNotifierPod');
});

test('provider family names', () {
expect(count2ProviderFamily.name, 'count2ProviderFamily');
expect(countFuture2ProviderFamily.name, 'countFuture2ProviderFamily');
expect(countStream2ProviderFamily.name, 'countStream2ProviderFamily');
expect(countNotifier2ProviderFamily.name, 'countNotifier2ProviderFamily');
expect(
countAsyncNotifier2ProviderFamily.name,
'countAsyncNotifier2ProviderFamily',
);
expect(
countStreamNotifier2ProviderFamily.name,
'countStreamNotifier2ProviderFamily',
);
});
}

0 comments on commit 756bb26

Please sign in to comment.