mirror of https://github.com/ErsatzTV/ErsatzTV.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
586 B
23 lines
586 B
using ErsatzTV.Core.FFmpeg; |
|
using FluentAssertions; |
|
using NUnit.Framework; |
|
|
|
namespace ErsatzTV.Core.Tests.FFmpeg; |
|
|
|
[TestFixture] |
|
public class WatermarkCalculatorTests |
|
{ |
|
[Test] |
|
public void EntireVideoBetweenWatermarks_ShouldReturn_EmptyFadePointList() |
|
{ |
|
List<FadePoint> actual = WatermarkCalculator.CalculateFadePoints( |
|
new DateTimeOffset(2022, 01, 31, 13, 34, 00, TimeSpan.FromHours(-5)), |
|
TimeSpan.Zero, |
|
TimeSpan.FromMinutes(5), |
|
None, |
|
15, |
|
10); |
|
|
|
actual.Should().HaveCount(0); |
|
} |
|
}
|
|
|