Expand description
Core abstractions for declaring and resolving type-safe test artifacts in
petri
.
NOTE: this crate does not define any concrete Artifact types itself.
Macros§
- Declare one or more type-safe artifacts.
Structs§
- A type-safe handle to a particular Artifact, as declared using the
declare_artifacts!
macro. - An artifact resolver, used both to express requirements for artifacts and to resolve them to paths.
- A type-erased handle to a particular Artifact, with no information as to what exactly the artifact is.
- A resolved artifact path for artifact
A
. - A resolve artifact path for an optional artifact
A
. - A set of dependencies required to run a test.
- A resolved set of test artifacts, returned by
TestArtifactRequirements::resolve
.
Traits§
- A trait that marks a type as being the type-safe ID for a petri artifact.
- Helper trait to allow uniform handling of both typed and untyped artifact handles in various contexts.
- A trait to resolve artifacts to paths.