Add required types for BeatmapDetailArea test case

This commit is contained in:
Jamie Taylor 2019-03-13 14:12:05 +09:00
parent 9df27f3a5f
commit 04b88cdd11
No known key found for this signature in database
GPG Key ID: 2ACFA8B6370B8C8C

View File

@ -1,6 +1,8 @@
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using System;
using System.Collections.Generic;
using System.Linq;
using NUnit.Framework;
using osu.Framework.Graphics;
@ -14,6 +16,8 @@ namespace osu.Game.Tests.Visual
[System.ComponentModel.Description("PlaySongSelect leaderboard/details area")]
public class TestCaseBeatmapDetailArea : OsuTestCase
{
public override IReadOnlyList<Type> RequiredTypes => new[] { typeof(BeatmapDetails) };
public TestCaseBeatmapDetailArea()
{
BeatmapDetailArea detailsArea;