aboutsummaryrefslogtreecommitdiff
path: root/tests/Jellyfin.Naming.Tests/Video/BaseVideoTest.cs
blob: b993e241c06f9468247881c7139ddf0a48d5ce9b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
using Emby.Naming.Common;
using Emby.Naming.Video;

namespace Jellyfin.Naming.Tests.Video
{
    public abstract class BaseVideoTest
    {
        protected VideoResolver GetParser()
        {
            var options = new NamingOptions();

            return new VideoResolver(options);
        }
    }
}