Improve test scene coverage of corner cases

This commit is contained in:
Bartłomiej Dach 2020-12-25 20:41:35 +01:00
parent 0aedc720f2
commit c32fc05f69

View File

@ -109,19 +109,43 @@ namespace osu.Game.Tests.Visual.Online
Category = "osu!", Category = "osu!",
Title = "Fix thing", Title = "Fix thing",
MessageHtml = "Additional info goes here.", MessageHtml = "Additional info goes here.",
Repository = "osu",
GithubPullRequestId = 11100,
GithubUser = new APIChangelogUser
{
OsuUsername = "smoogipoo",
UserId = 1040328
}
}, },
new APIChangelogEntry new APIChangelogEntry
{ {
Type = ChangelogEntryType.Add, Type = ChangelogEntryType.Add,
Category = "osu!", Category = "osu!",
Title = "Add thing", Title = "Add thing",
Major = true Major = true,
Repository = "ppy/osu-framework",
GithubPullRequestId = 4444,
GithubUser = new APIChangelogUser
{
DisplayName = "frenzibyte",
GithubUrl = "https://github.com/frenzibyte"
}
}, },
new APIChangelogEntry new APIChangelogEntry
{ {
Type = ChangelogEntryType.Misc, Type = ChangelogEntryType.Misc,
Category = "Code quality", Category = "Code quality",
Title = "Clean up thing" Title = "Clean up thing",
GithubUser = new APIChangelogUser
{
DisplayName = "some dude"
}
},
new APIChangelogEntry
{
Type = ChangelogEntryType.Misc,
Category = "Code quality",
Title = "Clean up another thing"
} }
} }
}); });