Bring VisualTests up-to-date.

This commit is contained in:
Dean Herbert
2017-03-31 17:55:07 +09:00
parent 24d06fa92d
commit 2b847aa2f4
20 changed files with 96 additions and 109 deletions

View File

@ -0,0 +1,16 @@
// 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.Testing;
using osu.Game;
namespace osu.Desktop.VisualTests
{
public class AutomatedVisualTestGame : OsuGameBase
{
public AutomatedVisualTestGame()
{
Add(new TestRunner(new TestBrowser()));
}
}
}