mirror of
https://github.com/osukey/osukey.git
synced 2025-06-10 13:58:01 +09:00
18 lines
511 B
C#
18 lines
511 B
C#
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
using osu.Framework.Platform;
|
|
|
|
namespace osu.Game.Tests.Platform
|
|
{
|
|
public class TestStorage : DesktopStorage
|
|
{
|
|
public TestStorage(string baseName)
|
|
: base(baseName, null)
|
|
{
|
|
}
|
|
|
|
public override string GetDatabaseConnectionString(string name) => "Data Source=" + GetUsablePathFor($"{name}.db", true);
|
|
}
|
|
}
|