mirror of
https://github.com/pese-git/cherrypick.git
synced 2026-01-23 21:13:35 +00:00
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,
|
||
|
|
}
|