System.Tests.TypeTestsExtended.TypeTestsExtended C# (CSharp) Method

TypeTestsExtended() static private method

static private TypeTestsExtended ( ) : System
return System
        static TypeTestsExtended()
        {
            // Move TestLoadAssembly.dll to subfolder TestLoadAssembly
            try
            {
                Directory.CreateDirectory(Path.GetDirectoryName(destTestAssemblyPath));
                File.Move(sourceTestAssemblyPath, destTestAssemblyPath);
            }
            catch (System.Exception) { }
            finally
            {
                File.Delete(sourceTestAssemblyPath);
            }
        }