IronRuby.Tests.Driver.MakeTempDir C# (CSharp) Method

MakeTempDir() private method

private MakeTempDir ( ) : string
return string
        internal string/*!*/ MakeTempDir() {
            string dir = Path.Combine(Path.GetTempPath(), _testRuntime.TestName);
            Directory.CreateDirectory(dir);
            return dir;
        }