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

Declaration Syntax

Public Sub New( _
	ByVal directoryName As String, _
	ByVal resourceDirectoryName As String _
)
public TestDirectory(
	string directoryName,
	string resourceDirectoryName
);
public: TestDirectory(
	String directoryName,
	String resourceDirectoryName
);
public function TestDirectory(
	directoryName : String,
	resourceDirectoryName : String
);

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. 

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