A game framework written with osu! in mind.
1// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
2// See the LICENCE file in the repository root for full licence text.
3
4using osu.Framework.Configuration;
5using osu.Framework.Platform;
6
7namespace osu.Framework.Testing
8{
9 internal class TestBrowserConfig : IniConfigManager<TestBrowserSetting>
10 {
11 protected override string Filename => @"visualtests.cfg";
12
13 public TestBrowserConfig(Storage storage)
14 : base(storage)
15 {
16 }
17
18 protected override void InitialiseDefaults()
19 {
20 base.InitialiseDefaults();
21 SetDefault(TestBrowserSetting.LastTest, string.Empty);
22 }
23 }
24
25 internal enum TestBrowserSetting
26 {
27 LastTest,
28 }
29}