Partager via


HostTypeAttribute, constructeur (String)

Initialise une nouvelle instance de la classe HostTypeAttribute. Cela est instancié à l'aide d'un argument qui spécifie le type d'hôte sur lequel ce test unitaire s'exécutera.

Espace de noms :  Microsoft.VisualStudio.TestTools.UnitTesting
Assembly :  Microsoft.VisualStudio.QualityTools.UnitTestFramework (dans Microsoft.VisualStudio.QualityTools.UnitTestFramework.dll)

Syntaxe

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

Paramètres

  • hostType
    Type : String

    Type de l'hôte sur lequel ce test unitaire s'exécutera.

Notes

Le type standard d'hôte qui est inclus avec Visual Studio 2005 est ASP.NET.

Exemples

[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");
}

Sécurité .NET Framework

Voir aussi

Référence

HostTypeAttribute Classe

HostTypeAttribute, surcharge

Microsoft.VisualStudio.TestTools.UnitTesting, espace de noms