jellyfin-server/tests/Jellyfin.Naming.Tests/Video/BaseVideoTest.cs

14 lines
321 B
C#
Raw Normal View History

2019-12-06 19:40:06 +00:00
using Emby.Naming.Common;
using Emby.Naming.Video;
namespace Jellyfin.Naming.Tests.Video
{
public abstract class BaseVideoTest
{
2020-01-11 19:25:06 +00:00
private readonly NamingOptions _namingOptions = new NamingOptions();
2019-12-06 19:40:06 +00:00
2020-01-11 19:25:06 +00:00
protected VideoResolver GetParser()
=> new VideoResolver(_namingOptions);
2019-12-06 19:40:06 +00:00
}
}