Constructs a TestDirectory from the full path where the directory will be created and the name of the folder folding your test resources and the assembly containing test resources.

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.Test
Assembly: Eas.WebCrawler.Common (eas.webcrawler.common.dll)

See Also

TestDirectory Class | TestDirectory Members | Eas.WebCrawler.Common.Test Namespace