mirror of
https://github.com/rosenbjerg/FFMpegCore.git
synced 2025-02-18 11:02:31 +00:00
Test update to try and resolve failed tests
This commit is contained in:
parent
8e32d68877
commit
91a2ceaceb
1 changed files with 7 additions and 7 deletions
|
@ -7,17 +7,17 @@ namespace FFMpegCore.Test;
|
||||||
[TestClass]
|
[TestClass]
|
||||||
public class DownloaderTests
|
public class DownloaderTests
|
||||||
{
|
{
|
||||||
|
[TestMethod]
|
||||||
|
public void GetSpecificVersionTest()
|
||||||
|
{
|
||||||
|
var binaries = FFMpegDownloader.DownloadFFMpegSuite(FFMpegVersions.V6_1).Result;
|
||||||
|
Assert.IsTrue(binaries.Count == 1);
|
||||||
|
}
|
||||||
|
|
||||||
[TestMethod]
|
[TestMethod]
|
||||||
public void GetAllLatestSuiteTest()
|
public void GetAllLatestSuiteTest()
|
||||||
{
|
{
|
||||||
var binaries = FFMpegDownloader.DownloadFFMpegSuite().Result;
|
var binaries = FFMpegDownloader.DownloadFFMpegSuite().Result;
|
||||||
Assert.IsTrue(binaries.Count == 2); // many platforms have only ffmpeg and ffprobe
|
Assert.IsTrue(binaries.Count == 2); // many platforms have only ffmpeg and ffprobe
|
||||||
}
|
}
|
||||||
|
|
||||||
[TestMethod]
|
|
||||||
public void GetSpecificVersionTest()
|
|
||||||
{
|
|
||||||
var binaries = FFMpegDownloader.DownloadFFMpegSuite(FFMpegVersions.V4_0, binaries: FFMpegBinaries.FFMpeg).Result;
|
|
||||||
Assert.IsTrue(binaries.Count == 1);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue