Add BeatmapLookupCache as another dependency

This commit is contained in:
Dan Balasescu
2022-02-15 21:05:05 +09:00
parent c48a0dc993
commit 2675bb87ff
3 changed files with 11 additions and 0 deletions

View File

@ -24,6 +24,7 @@ namespace osu.Game.Tests.Visual.OnlinePlay
public OnlinePlayBeatmapAvailabilityTracker AvailabilityTracker { get; }
public TestRoomRequestsHandler RequestsHandler { get; }
public TestUserLookupCache UserLookupCache { get; }
public BeatmapLookupCache BeatmapLookupCache { get; }
/// <summary>
/// All cached dependencies which are also <see cref="Drawable"/> components.
@ -41,6 +42,7 @@ namespace osu.Game.Tests.Visual.OnlinePlay
AvailabilityTracker = new OnlinePlayBeatmapAvailabilityTracker();
RoomManager = CreateRoomManager();
UserLookupCache = new TestUserLookupCache();
BeatmapLookupCache = new BeatmapLookupCache();
dependencies = new DependencyContainer(new CachedModelDependencyContainer<Room>(null) { Model = { BindTarget = SelectedRoom } });
@ -51,6 +53,7 @@ namespace osu.Game.Tests.Visual.OnlinePlay
CacheAs(AvailabilityTracker);
CacheAs(new OverlayColourProvider(OverlayColourScheme.Plum));
CacheAs<UserLookupCache>(UserLookupCache);
CacheAs(BeatmapLookupCache);
}
public object Get(Type type)