1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-28 14:30:42 +08:00

Partial classes

This commit is contained in:
Dan Balasescu
2025-06-11 16:43:32 +09:00
Unverified
parent e2d8c39388
commit 981cf62c23
@@ -17,7 +17,7 @@ using osu.Game.Updater;
namespace osu.Game.Tests.NonVisual
{
[HeadlessTest]
public class TestSceneUpdateManager : OsuTestScene
public partial class TestSceneUpdateManager : OsuTestScene
{
[Cached(typeof(INotificationOverlay))]
private readonly INotificationOverlay notifications = new TestNotificationOverlay();
@@ -128,7 +128,7 @@ namespace osu.Game.Tests.NonVisual
AddUntilStep("no check pending", () => !manager.IsPending);
}
private class TestUpdateManager : UpdateManager
private partial class TestUpdateManager : UpdateManager
{
public bool IsPending { get; private set; }
public int Completions { get; private set; }
@@ -161,7 +161,7 @@ namespace osu.Game.Tests.NonVisual
}
}
private class TestNotificationOverlay : INotificationOverlay
private partial class TestNotificationOverlay : INotificationOverlay
{
public void Post(Notification notification)
{