mirror of
https://github.com/mbierlee/poodinis.git
synced 2024-11-15 12:14:01 +01:00
35 lines
1.3 KiB
D
35 lines
1.3 KiB
D
import poodinis.registration;
|
|
|
|
import std.exception;
|
|
|
|
version(unittest) {
|
|
class TestType {
|
|
}
|
|
|
|
// Test getting instance without scope defined throws exception
|
|
unittest {
|
|
Registration registration = Registration();
|
|
registration.registeredType = typeid(TestType);
|
|
assertThrown!(NoScopeDefinedException)(registration.getInstance());
|
|
}
|
|
|
|
// Test getting instance from single instance scope
|
|
unittest {
|
|
Registration registration = Registration();
|
|
registration.registationScope = new SingleInstanceScope(typeid(TestType));
|
|
auto instance1 = registration.getInstance();
|
|
auto instance2 = registration.getInstance();
|
|
assert(instance1 is instance2, "Registration with single instance scope did not return the same instance");
|
|
}
|
|
|
|
// Test set single instance scope using scope setter
|
|
unittest {
|
|
Registration registration = Registration();
|
|
registration.instantiatableType = typeid(TestType);
|
|
auto chainedRegistration = registration.singleInstance();
|
|
auto instance1 = registration.getInstance();
|
|
auto instance2 = registration.getInstance();
|
|
assert(instance1 is instance2, "Registration with single instance scope did not return the same instance");
|
|
assert(registration is chainedRegistration, "Registration returned by scope setting is not the same as the registration being set");
|
|
}
|
|
} |