Fixed tess

This commit is contained in:
Bjarke Berg
2023-02-21 11:28:21 +01:00
parent be8f120851
commit ed25342311
4 changed files with 24 additions and 3 deletions

View File

@@ -0,0 +1,12 @@
using Umbraco.Cms.Core.Persistence.Repositories;
namespace Umbraco.Cms.Tests.Integration.Testing;
public class TestWebProfilerRepository : IWebProfilerRepository
{
private bool _status = false;
public void SetStatus(int userId, bool status) => _status = status;
public bool GetStatus(int userId) => _status;
}