mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 06:17:23 +08:00
46 lines
1.3 KiB
C#
46 lines
1.3 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 System.IO;
|
|
using NUnit.Framework;
|
|
using osu.Framework.Allocation;
|
|
using osu.Framework.Platform;
|
|
using osu.Game.Rulesets;
|
|
using osu.Game.Tests;
|
|
|
|
namespace osu.Game.Tournament.Tests.NonVisual
|
|
{
|
|
public class DataLoadTest : TournamentHostTest
|
|
{
|
|
[Test]
|
|
public void TestUnavailableRuleset()
|
|
{
|
|
using (HeadlessGameHost host = new CleanRunHeadlessGameHost())
|
|
{
|
|
try
|
|
{
|
|
var osu = new TestTournament();
|
|
|
|
LoadTournament(host, osu);
|
|
var storage = osu.Dependencies.Get<Storage>();
|
|
|
|
Assert.That(storage.GetFullPath("."), Is.EqualTo(Path.Combine(host.Storage.GetFullPath("."), "tournaments", "default")));
|
|
}
|
|
finally
|
|
{
|
|
host.Exit();
|
|
}
|
|
}
|
|
}
|
|
|
|
public class TestTournament : TournamentGameBase
|
|
{
|
|
[BackgroundDependencyLoader]
|
|
private void load()
|
|
{
|
|
Ruleset.Value = new RulesetInfo(); // not available
|
|
}
|
|
}
|
|
}
|
|
}
|