* re-namespace * optimize usings * more usings * more of the same * more implicit/global usings * cleanup all usings * minor fixes
24 lines
586 B
C#
24 lines
586 B
C#
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);
|
|
}
|
|
}
|