mirror of
https://github.com/osukey/osukey.git
synced 2025-06-19 10:17:56 +09:00
32 lines
795 B
C#
32 lines
795 B
C#
using osu.Framework.Graphics;
|
|
using osu.Framework.Screens.Testing;
|
|
using osu.Game.Database;
|
|
using osu.Game.Screens.Select;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace osu.Desktop.VisualTests.Tests
|
|
{
|
|
class TestCaseDetails : TestCase
|
|
{
|
|
|
|
public override void Reset()
|
|
{
|
|
base.Reset();
|
|
|
|
Add(new Details
|
|
{
|
|
RelativeSizeAxes = Axes.Both,
|
|
Metadata = new BeatmapMetadata
|
|
{
|
|
Source = "Some guy",
|
|
Tags = "beatmap metadata example with a very very long list of tags and not much creativity",
|
|
},
|
|
});
|
|
}
|
|
}
|
|
}
|