 | KubeTestHelperCreateTestFolder Method |
Creates and optionally populates a temporary test folder with test files.
Namespace:
Neon.Xunit.Kube
Assembly:
Neon.Xunit.Kube (in Neon.Xunit.Kube.dll) Version: 2.3.2-internal
Syntaxpublic static TempFolder CreateTestFolder(
params Tuple<string, string>[] files
)
Public Shared Function CreateTestFolder (
ParamArray files As Tuple(Of String, String)()
) As TempFolder
public:
static TempFolder^ CreateTestFolder(
... array<Tuple<String^, String^>^>^ files
)
static member CreateTestFolder :
files : Tuple<string, string>[] -> TempFolder
Parameters
- files
- Type: SystemTupleString, String
The files to be created. The first item in each tuple entry will be
the local file name and the second the contents of the file.
Return Value
Type:
TempFolderThe
TempFolder(String, String).
Remarks
See Also