failureArtifactStorageUsageSample
@Sampled
fun failureArtifactStorageUsageSample(artifact: FailureArtifact) {
val storage = PlatformTestStorageRegistry.getInstance()
// Retrieve a Uri to share, delete, or process the file
val uri = storage.getOutputFileUri(artifact.fileName)
// Or open an input stream to read the generated file directly
val inputStream = storage.openInputFile(artifact.fileName)
}