Skip to content

Commit

Permalink
Remove the init safe test because the method doesn't exist
Browse files Browse the repository at this point in the history
  • Loading branch information
MelbourneDeveloper committed Jul 30, 2023
1 parent 8ba86dd commit d704be8
Showing 1 changed file with 0 additions and 19 deletions.
19 changes: 0 additions & 19 deletions test/ioc_container_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -682,25 +682,6 @@ void main() {
);
});

// test('Test initSafe', () async {
// final builder = IocContainerBuilder()
// ..addSingletonAsync(
// (c) async => A('a'),
// );

// final container = builder.toContainer();

// final a = await container.getAsync<A>();

// expect(
// identical(
// a,
// await container.getAsync<A>(),
// ),
// true,
// );
// });

test('Test Async Transient', () async {
var futureCounter = 0;

Expand Down

0 comments on commit d704be8

Please sign in to comment.