Construtor HostTypeAttribute (String)

Inicializa uma nova instância da classe HostTypeAttribute.Isso é instanciado, usando um argumento que especifica o tipo de host no qual o teste de unidade será executado.

Namespace:  Microsoft.VisualStudio.TestTools.UnitTesting
Assembly:  Microsoft.VisualStudio.QualityTools.UnitTestFramework (em Microsoft.VisualStudio.QualityTools.UnitTestFramework.dll)

Sintaxe

'Declaração
Public Sub New ( _
    hostType As String _
)
public HostTypeAttribute(
    string hostType
)
public:
HostTypeAttribute(
    String^ hostType
)
new : 
        hostType:string -> HostTypeAttribute
public function HostTypeAttribute(
    hostType : String
)

Parâmetros

  • hostType
    Tipo: System.String
    O tipo de host no qual o teste de unidade será executado.

Comentários

O tipo padrão de host que está incluído no Visual Studio 2005 é ASP.NET.

Exemplos

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

Segurança do .NET Framework

Consulte também

Referência

HostTypeAttribute Classe

Sobrecargas HostTypeAttribute

Namespace Microsoft.VisualStudio.TestTools.UnitTesting