pub trait ResolveTestArtifact {
// Required method
fn resolve(&self, id: ErasedArtifactHandle) -> Result<PathBuf, Error>;
}Expand description
A trait to resolve artifacts to paths.
Test authors are expected to use the TestArtifactRequirements and
TestArtifacts abstractions to interact with artifacts, and should not
use this API directly.