2352306269
* add ability for objectloader to skip server too. add test so both cache and server can't be skipped * move testing project to correct dir * remove extra file
23 lines
812 B
C#
23 lines
812 B
C#
using Speckle.Sdk.SQLite;
|
|
|
|
namespace Speckle.Sdk.Testing.Framework;
|
|
|
|
public class DummySqLiteSendManager : ISqLiteJsonCacheManager
|
|
{
|
|
public string? GetObject(string id) => throw new NotImplementedException();
|
|
|
|
public void SaveObject(string id, string json) => throw new NotImplementedException();
|
|
|
|
public void UpdateObject(string id, string json) => throw new NotImplementedException();
|
|
|
|
public virtual void SaveObjects(IEnumerable<(string id, string json)> items) => throw new NotImplementedException();
|
|
|
|
public bool HasObject(string objectId) => throw new NotImplementedException();
|
|
|
|
public IReadOnlyCollection<(string, string)> GetAllObjects() => throw new NotImplementedException();
|
|
|
|
public void DeleteObject(string id) => throw new NotImplementedException();
|
|
|
|
public void Dispose() { }
|
|
}
|