mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-04-24 22:17:25 -04:00
13 lines
321 B
C#
13 lines
321 B
C#
using Emby.Naming.Common;
|
|
using Emby.Naming.Video;
|
|
|
|
namespace Jellyfin.Naming.Tests.Video
|
|
{
|
|
public abstract class BaseVideoTest
|
|
{
|
|
private readonly NamingOptions _namingOptions = new NamingOptions();
|
|
|
|
protected VideoResolver GetParser()
|
|
=> new VideoResolver(_namingOptions);
|
|
}
|
|
}
|