osu/osu.Desktop.Tests/VisualTests.cs

23 lines
572 B
C#
Raw Normal View History

2017-02-09 10:24:53 +00: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 NUnit.Framework;
using osu.Desktop.VisualTests;
using osu.Framework.Desktop.Platform;
namespace osu.Desktop.Tests
{
[TestFixture]
2017-03-31 08:55:07 +00:00
public class VisualTests
2017-02-09 10:24:53 +00:00
{
[Test]
2017-03-31 08:55:07 +00:00
public void TestVisualTests()
2017-02-09 10:24:53 +00:00
{
using (var host = new HeadlessGameHost())
{
2017-03-31 08:55:07 +00:00
host.Run(new AutomatedVisualTestGame());
2017-02-09 10:24:53 +00:00
}
}
}
}