// Copyright (c) 2007-2017 ppy Pty Ltd . // 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) { } public override string GetDatabaseConnectionString(string name) { return "DataSource=:memory:"; } } }