mirror of
https://github.com/rosenbjerg/FFMpegCore.git
synced 2025-12-14 18:15:44 +00:00
Ensure sub tempfolder is deleted after use
This commit is contained in:
parent
7794276536
commit
abf2ab5ee7
1 changed files with 6 additions and 0 deletions
|
|
@ -17,6 +17,12 @@ public class DownloaderTests
|
||||||
_ffOptions = new FFOptions { BinaryFolder = tempDownloadFolder };
|
_ffOptions = new FFOptions { BinaryFolder = tempDownloadFolder };
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[TestCleanup]
|
||||||
|
public void DeleteTestFolder()
|
||||||
|
{
|
||||||
|
Directory.Delete(_ffOptions.BinaryFolder, true);
|
||||||
|
}
|
||||||
|
|
||||||
[OsSpecificTestMethod(OsPlatforms.Windows | OsPlatforms.Linux)]
|
[OsSpecificTestMethod(OsPlatforms.Windows | OsPlatforms.Linux)]
|
||||||
public async Task GetSpecificVersionTest()
|
public async Task GetSpecificVersionTest()
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue