Definition
Assembly: CloudNimble.Breakdance.Azurite.dll Namespace: CloudNimble.Breakdance.Azurite Inheritance: CloudNimble.Breakdance.Assemblies.BreakdanceTestBaseSyntax
Summary
Base class for tests that require an Azurite instance. Each derived class must declare its own static AzuriteInstance field and override theAzurite property to return it.
Remarks
MSTest requires [ClassInitialize] and [ClassCleanup] to be static methods. To avoid cross-class pollution (static fields on a base class are shared by ALL derived classes), each test class must own its own static instance.Examples
Properties
BlobEndpoint
Gets the Blob service endpoint URL.Syntax
Property Value
Type:string
BlobPort
Gets the Blob service port number, or null if not started.Syntax
Property Value
Type:System.Nullable<int>
ConnectionString
Gets a connection string for the Azurite Development Storage account.Syntax
Property Value
Type:string
QueueEndpoint
Gets the Queue service endpoint URL.Syntax
Property Value
Type:string
QueuePort
Gets the Queue service port number, or null if not started.Syntax
Property Value
Type:System.Nullable<int>
TableEndpoint
Gets the Table service endpoint URL.Syntax
Property Value
Type:string
TablePort
Gets the Table service port number, or null if not started.Syntax
Property Value
Type:System.Nullable<int>