Skip to content
This repository was archived by the owner on Jan 12, 2024. It is now read-only.
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions src/Simulation/QsharpCore/Diagnostics/UnitTests.qs
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,16 @@ namespace Microsoft.Quantum.Diagnostics {
///
@Attribute()
newtype Test = (ExecutionTarget : String);

/// # Summary
/// Compiler recognized attribute via which an alternative name can be defined
/// that may be used when loading a type or callable for testing purposes.
///
/// # Input
/// Defined name for testing purposes.
/// The String is expected to contain a fully qualified name.
@Attribute()
newtype EnableTestingViaName = String;
}