using ErsatzTV.Core.Domain; using ErsatzTV.Core.Metadata; namespace ErsatzTV.Core.Tests.Fakes; public class FakeMovieWithPath : MediaItemScanResult { public FakeMovieWithPath(string path) : base( new Movie { MediaVersions = new List { new() { MediaFiles = new List { new() { Path = path } } } } }) => IsAdded = true; }