34 lines
787 B
Dart
34 lines
787 B
Dart
import 'package:angel_container/angel_container.dart';
|
|
import 'package:test/test.dart';
|
|
|
|
void main() {
|
|
Container container;
|
|
|
|
setUp(() {
|
|
container = Container(const EmptyReflector());
|
|
container.registerNamedSingleton('foo', Foo(bar: 'baz'));
|
|
});
|
|
|
|
test('fetch by name', () {
|
|
expect(container.findByName<Foo>('foo').bar, 'baz');
|
|
});
|
|
|
|
test('cannot redefine', () {
|
|
expect(() => container.registerNamedSingleton('foo', Foo(bar: 'quux')),
|
|
throwsStateError);
|
|
});
|
|
|
|
test('throws on unknown name', () {
|
|
expect(() => container.findByName('bar'), throwsStateError);
|
|
});
|
|
|
|
test('throws on incorrect type', () {
|
|
expect(() => container.findByName<List<String>>('foo'), throwsA(anything));
|
|
});
|
|
}
|
|
|
|
class Foo {
|
|
final String bar;
|
|
|
|
Foo({this.bar});
|
|
}
|