diff options
| author | Bond_009 <bond.009@outlook.com> | 2019-09-28 19:49:41 +0200 |
|---|---|---|
| committer | Bond_009 <bond.009@outlook.com> | 2019-09-28 19:49:41 +0200 |
| commit | 05a1510b31ac43fa0a4dec6c1b3a87667984c707 (patch) | |
| tree | fc987e87e9450d33082c16201266db88aac11483 /tests/Jellyfin.MediaEncoding.Tests/EncoderValidatorTests.cs | |
| parent | 1b01a6ece1c60ed5b767f825265de17f78a2770a (diff) | |
Add more test data
Diffstat (limited to 'tests/Jellyfin.MediaEncoding.Tests/EncoderValidatorTests.cs')
| -rw-r--r-- | tests/Jellyfin.MediaEncoding.Tests/EncoderValidatorTests.cs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/Jellyfin.MediaEncoding.Tests/EncoderValidatorTests.cs b/tests/Jellyfin.MediaEncoding.Tests/EncoderValidatorTests.cs index 9fa1e4f7e..5a759bcb2 100644 --- a/tests/Jellyfin.MediaEncoding.Tests/EncoderValidatorTests.cs +++ b/tests/Jellyfin.MediaEncoding.Tests/EncoderValidatorTests.cs @@ -14,6 +14,7 @@ namespace Jellyfin.MediaEncoding.Tests public IEnumerator<object[]> GetEnumerator() { yield return new object[] { EncoderValidatorTestsData.FFmpegV42Output, new Version(4, 2) }; + yield return new object[] { EncoderValidatorTestsData.FFmpegV414Output, new Version(4, 1, 4) }; yield return new object[] { EncoderValidatorTestsData.FFmpegV404Output, new Version(4, 0, 4) }; } @@ -29,6 +30,7 @@ namespace Jellyfin.MediaEncoding.Tests [Theory] [InlineData(EncoderValidatorTestsData.FFmpegV42Output, true)] + [InlineData(EncoderValidatorTestsData.FFmpegV414Output, true)] [InlineData(EncoderValidatorTestsData.FFmpegV404Output, true)] public void ValidateVersionInternalTest(string versionOutput, bool valid) { |
