DeploymentItemAttribute Constructor (String)

Specifies an item to be deployed before a test run starts.

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

Syntax

'Declaration
Public Sub New ( _
    path As String _
)
public DeploymentItemAttribute(
    string path
)
public:
DeploymentItemAttribute(
    String^ path
)
new : 
        path:string -> DeploymentItemAttribute
public function DeploymentItemAttribute(
    path : String
)

Parameters

  • path
    Type: String

    The file or directory to deploy. The path is relative to the build output directory. The item will be copied to the same directory as the deployed test assemblies.

Remarks

To avoid dependency on your project structure, set the Copy to Output property of project files, and deploy them from the build output directory.

.NET Framework Security

See Also

Reference

DeploymentItemAttribute Class

DeploymentItemAttribute Overload

Microsoft.VisualStudio.TestTools.UnitTesting Namespace

Other Resources

Test Deployment