Declaration Syntax
Public Sub New( _
ByVal directoryName As String, _
ByVal resourceDirectoryName As String, _
ByVal parentAssembly As Assembly _
)
public TestDirectory(
string directoryName,
string resourceDirectoryName,
Assembly parentAssembly
);
public: TestDirectory(
String directoryName,
String resourceDirectoryName,
Assembly parentAssembly
);
public function TestDirectory(
directoryName : String,
resourceDirectoryName : String,
parentAssembly : Assembly
);
Parameters
- directoryName
- The full path to where the temporary directory will be created.
- resourceDirectoryName
- The name of the directory in which you placed your resources in your visual studio prject file.
- parentAssembly
- The assemcly containing the test resources to be copied.
Remarks
This constructor assumes that you have placed a collection of test resources into a directory in the test project which was set to build action = Embedded Resources.Requirements
Namespace: Eas.WebCrawler.Common.TestAssembly: Eas.WebCrawler.Common (eas.webcrawler.common.dll)