mirror of
https://github.com/ppy/osu.git
synced 2024-11-07 03:17:28 +08:00
62 lines
1.7 KiB
C#
62 lines
1.7 KiB
C#
// 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 NUnit.Framework;
|
|
using osu.Game.Beatmaps;
|
|
using osu.Game.Models;
|
|
|
|
namespace osu.Game.Tests.Beatmaps
|
|
{
|
|
[TestFixture]
|
|
public class ToStringFormattingTest
|
|
{
|
|
[Test]
|
|
public void TestArtistTitle()
|
|
{
|
|
var beatmap = new BeatmapInfo
|
|
{
|
|
Metadata = new BeatmapMetadata
|
|
{
|
|
Artist = "artist",
|
|
Title = "title"
|
|
}
|
|
};
|
|
|
|
Assert.That(beatmap.ToString(), Is.EqualTo("artist - title"));
|
|
}
|
|
|
|
[Test]
|
|
public void TestArtistTitleCreator()
|
|
{
|
|
var beatmap = new BeatmapInfo
|
|
{
|
|
Metadata = new BeatmapMetadata
|
|
{
|
|
Artist = "artist",
|
|
Title = "title",
|
|
Author = new RealmUser { Username = "creator" }
|
|
}
|
|
};
|
|
|
|
Assert.That(beatmap.ToString(), Is.EqualTo("artist - title (creator)"));
|
|
}
|
|
|
|
[Test]
|
|
public void TestArtistTitleCreatorDifficulty()
|
|
{
|
|
var beatmap = new BeatmapInfo
|
|
{
|
|
Metadata = new BeatmapMetadata
|
|
{
|
|
Artist = "artist",
|
|
Title = "title",
|
|
Author = new RealmUser { Username = "creator" }
|
|
},
|
|
DifficultyName = "difficulty"
|
|
};
|
|
|
|
Assert.That(beatmap.ToString(), Is.EqualTo("artist - title (creator) [difficulty]"));
|
|
}
|
|
}
|
|
}
|