osu/osu.Game/Tests/Platform/TestStorage.cs

20 lines
516 B
C#
Raw Normal View History

2018-01-05 11:21:19 +00:00
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
2017-09-18 13:32:49 +00:00
// 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-04 19:52:12 +00:00
public override string GetDatabaseConnectionString(string name)
2017-09-18 13:32:49 +00:00
{
2017-10-04 19:52:12 +00:00
return "DataSource=:memory:";
2017-09-18 13:32:49 +00:00
}
}
2017-10-04 19:52:12 +00:00
}