1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-24 12:07:27 +08:00
osu-lazer/osu.Game/Tests/Platform/TestStorage.cs

20 lines
516 B
C#
Raw Normal View History

2017-09-18 21:32:49 +08:00
// Copyright (c) 2007-2017 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)
{
}
2017-10-05 03:52:12 +08:00
public override string GetDatabaseConnectionString(string name)
2017-09-18 21:32:49 +08:00
{
2017-10-05 03:52:12 +08:00
return "DataSource=:memory:";
2017-09-18 21:32:49 +08:00
}
}
2017-10-05 03:52:12 +08:00
}