mirror of
https://github.com/pese-git/cherrypick.git
synced 2026-01-23 21:13:35 +00:00
- Successfully executed all scenarios (register, chain, asyncChain, named, override, etc) for Cherrypick, GetIt, and Riverpod - Verified correct integration of fully generic DIAdapter & universalRegistration architecture - Ensured type-safety in all setup/registration flows after complete refactor - All benchmarks run and pass under stress/load params for each DI adapter
14 lines
309 B
Dart
14 lines
309 B
Dart
/// Enum to represent which scenario is constructed for the benchmark.
|
|
enum UniversalScenario {
|
|
/// Single registration.
|
|
register,
|
|
/// Chain of dependencies.
|
|
chain,
|
|
/// Named registrations.
|
|
named,
|
|
/// Child-scope override scenario.
|
|
override,
|
|
/// Asynchronous chain scenario.
|
|
asyncChain,
|
|
}
|