HostTypeAttribute Constructor (String)

Initializes a new instance of the HostTypeAttribute class. This is instantiated with an argument that specifies the type of host that this unit test will run in.

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

Syntax

'Declaration
Public Sub New ( _
    hostType As String _
)
'Usage
Dim hostType As String 

Dim instance As New HostTypeAttribute(hostType)
public HostTypeAttribute(
    string hostType
)
public:
HostTypeAttribute(
    String^ hostType
)
public function HostTypeAttribute(
    hostType : String
)

Parameters

  • hostType
    Type: System.String

    The type of host that this unit test will run in.

Remarks

The standard type of host that is included with Visual Studio 2005 is ASP.NET.

Examples

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

.NET Framework Security

See Also

Reference

HostTypeAttribute Class

HostTypeAttribute Members

HostTypeAttribute Overload

Microsoft.VisualStudio.TestTools.UnitTesting Namespace