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 : StringType 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
- Confiance totale accordée à l'appelant immédiat. Ce membre ne peut pas être utilisé par du code d'un niveau de confiance partiel. Pour plus d'informations, voir Utilisation de bibliothèques à partir de code d'un niveau de confiance partiel.
Voir aussi
Référence
Microsoft.VisualStudio.TestTools.UnitTesting, espace de noms