osu/osu.Game.Tests/Visual/TestCaseResults.cs

68 lines
1.9 KiB
C#
Raw Normal View History

// 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.
2018-04-13 09:19:50 +00:00
using System;
using System.Collections.Generic;
using NUnit.Framework;
using osu.Framework.Allocation;
using osu.Game.Beatmaps;
using osu.Game.Rulesets.Scoring;
2018-11-28 07:12:57 +00:00
using osu.Game.Scoring;
using osu.Game.Screens.Play;
2018-04-13 09:19:50 +00:00
using osu.Game.Screens.Ranking;
using osu.Game.Screens.Ranking.Pages;
2018-04-13 09:19:50 +00:00
using osu.Game.Users;
namespace osu.Game.Tests.Visual
{
[TestFixture]
2019-02-15 08:01:06 +00:00
public class TestCaseResults : ScreenTestCase
2018-04-13 09:19:50 +00:00
{
private BeatmapManager beatmaps;
public override IReadOnlyList<Type> RequiredTypes => new[]
{
2018-11-28 09:33:01 +00:00
typeof(ScoreInfo),
2018-04-13 09:19:50 +00:00
typeof(Results),
typeof(ResultsPage),
typeof(ScoreResultsPage),
2018-12-27 06:30:02 +00:00
typeof(LocalLeaderboardPage)
2018-04-13 09:19:50 +00:00
};
[BackgroundDependencyLoader]
private void load(BeatmapManager beatmaps)
{
this.beatmaps = beatmaps;
}
protected override void LoadComplete()
{
base.LoadComplete();
var beatmapInfo = beatmaps.QueryBeatmap(b => b.RulesetID == 0);
if (beatmapInfo != null)
Beatmap.Value = beatmaps.GetWorkingBeatmap(beatmapInfo);
2018-04-13 09:19:50 +00:00
2019-02-15 08:01:06 +00:00
LoadScreen(new SoloResults(new ScoreInfo
2018-04-13 09:19:50 +00:00
{
TotalScore = 2845370,
Accuracy = 0.98,
MaxCombo = 123,
Rank = ScoreRank.A,
Date = DateTimeOffset.Now,
2018-12-05 10:44:01 +00:00
Statistics = new Dictionary<HitResult, int>
2018-04-13 09:19:50 +00:00
{
{ HitResult.Great, 50 },
{ HitResult.Good, 20 },
{ HitResult.Meh, 50 },
{ HitResult.Miss, 1 }
},
User = new User
{
Username = "peppy",
}
}));
2018-04-13 09:19:50 +00:00
}
}
}