mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 05:57:52 +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.Users;
|
||
|
|
||
|
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 User { 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 User { Username = "creator" }
|
||
|
},
|
||
|
Version = "difficulty"
|
||
|
};
|
||
|
|
||
|
Assert.That(beatmap.ToString(), Is.EqualTo("artist - title (creator) [difficulty]"));
|
||
|
}
|
||
|
}
|
||
|
}
|