ATMLProject.model.TestProgramSet.RemoveATMLDocument C# (CSharp) Метод

RemoveATMLDocument() публичный Метод

public RemoveATMLDocument ( string documentName, AtmlFileType atmlDocNo ) : void
documentName string
atmlDocNo AtmlFileType
Результат void
        public void RemoveATMLDocument( string documentName, AtmlFileType atmlDocNo )
        {
            documentName = AddDocumentSuffix( documentName, atmlDocNo );
            string folder = Path.Combine( TestSetDirectory.FullName, "atml" );
            string fullFileName = Path.Combine( folder, documentName );
            FileManager.DeleteFile( fullFileName );
        }