VMwareIntegration.Common.TestEnvironment.TestEnvironment C# (CSharp) Method

TestEnvironment() public method

public TestEnvironment ( string operatingSystem, string description, string databaseType, string vmwarePath, string snapshotName ) : System
operatingSystem string
description string
databaseType string
vmwarePath string
snapshotName string
return System
        public TestEnvironment(string operatingSystem, string description, string databaseType, string vmwarePath, string snapshotName)
        {
            _vmwarePath = vmwarePath;
             _snapshotName = snapshotName;
             _operatingSystem = operatingSystem;
             _description = description;
             _databaseType = databaseType;
             _postInstallCommands = new List<PostInstallCommand>();
             _postInstallFileCopy = new List<PostInstallFileCopy>();
        }
TestEnvironment