Exemple #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="TestCaseDirectoryDataUtils"/> class.
 /// </summary>
 /// <param name="testCaseId">
 /// The test case id.
 /// </param>
 /// <param name="testCaseDirectoryRoot">
 /// The test case directory root.
 /// </param>
 public TestCaseDirectoryDataUtils(int testCaseId, string testCaseDirectoryRoot)
 {
     TestCaseDirectoryRoot      = testCaseDirectoryRoot;
     TestCaseId                 = testCaseId;
     TestCaseFileAndFolderUtils = new TestCaseFileAndFolderUtils(TestCaseId, TestCaseDirectoryRoot);
     TestDataValuesFilePath     = TestCaseFileAndFolderUtils.GetTestCaseRootFilePath("TestDataValues.txt");
     ConstantsFilePath          = TestCaseFileAndFolderUtils.GetTestCaseRootFilePath("Constants.txt");
     KeyValuePairUtils          = new KeyValuePairUtils();
     StringTransformationUtils  = new StringTransformationUtils();
     Init();
 }