Sdílet prostřednictvím


HostTypeAttribute – konstruktor (String)

Vytvoří novou instanci třídy HostTypeAttribute.Je vytvořena instance pomocí argument, který určuje typ hostitele, na kterém bude spuštěn tento test jednotky.

Obor názvů:  Microsoft.VisualStudio.TestTools.UnitTesting
Sestavení:  Microsoft.VisualStudio.QualityTools.UnitTestFramework (v Microsoft.VisualStudio.QualityTools.UnitTestFramework.dll)

Syntaxe

'Deklarace
Public Sub New ( _
    hostType As String _
)
public HostTypeAttribute(
    string hostType
)
public:
HostTypeAttribute(
    String^ hostType
)
new : 
        hostType:string -> HostTypeAttribute
public function HostTypeAttribute(
    hostType : String
)

Parametry

  • hostType
    Typ: System.String
    Typ hostitele, na kterém bude spuštěn tento test jednotky.

Poznámky

Standardní typ hostitele, který je součástí Visual Studio 2005 je ASP.NET.

Příklady

[TestMethod()]
[HostType("ASP.NET")]
[UrlToTest("https://localhost:1371/webSite12")]
[AspNetDevelopmentServerHost("d:\\MyWebSite", "/MyWebSiteRoot")]
public void ConstructorTest()
{
   object target = TestProject1.Class1Accessor.CreatePrivate();
   Assert.Inconclusive("TODO: Implement code to verify target");
}

Zabezpečení rozhraní .NET Framework

Viz také

Referenční dokumentace

HostTypeAttribute Třída

HostTypeAttribute – přetížení

Microsoft.VisualStudio.TestTools.UnitTesting – obor názvů