mirror of
https://github.com/ppy/osu.git
synced 2024-11-09 02:37:57 +08:00
55 lines
1.3 KiB
C#
55 lines
1.3 KiB
C#
using System.Linq;
|
|
using osu.Framework.Allocation;
|
|
using osu.Framework.Testing;
|
|
using osu.Game.Beatmaps;
|
|
using osu.Game.Database;
|
|
using osu.Game.Rulesets.Scoring;
|
|
using osu.Game.Screens.Ranking;
|
|
using osu.Game.Users;
|
|
|
|
namespace osu.Desktop.VisualTests.Tests
|
|
{
|
|
internal class TestCaseResults : TestCase
|
|
{
|
|
private BeatmapDatabase db;
|
|
|
|
public override string Description => @"Results after playing.";
|
|
|
|
[BackgroundDependencyLoader]
|
|
private void load(BeatmapDatabase db)
|
|
{
|
|
this.db = db;
|
|
}
|
|
|
|
private WorkingBeatmap beatmap;
|
|
|
|
public override void Reset()
|
|
{
|
|
base.Reset();
|
|
|
|
if (beatmap == null)
|
|
{
|
|
var beatmapInfo = db.Query<BeatmapInfo>().FirstOrDefault(b => b.RulesetID == 0);
|
|
if (beatmapInfo != null)
|
|
beatmap = db.GetWorkingBeatmap(beatmapInfo);
|
|
}
|
|
|
|
base.Reset();
|
|
|
|
Add(new Results(new Score
|
|
{
|
|
TotalScore = 2845370,
|
|
Accuracy = 0.98,
|
|
Rank = ScoreRank.A,
|
|
User = new User
|
|
{
|
|
Username = "peppy",
|
|
}
|
|
})
|
|
{
|
|
Beatmap = beatmap
|
|
});
|
|
}
|
|
}
|
|
}
|