Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
brianlagunas committed Sep 13, 2024
1 parent 7e61adc commit 4c02237
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
using Reveal.Sdk.Dom.Core;
using Reveal.Sdk.Dom.Data;
using Reveal.Sdk.Dom.Filters;
using Reveal.Sdk.Dom.Visualizations;
using System.Collections.Generic;
using Xunit;
Expand Down Expand Up @@ -108,6 +110,12 @@ private class MockVisualization : IVisualization, IParentDocument
public string Description { get; set; }
public IDataDefinition DataDefinition { get; }
RdashDocument IParentDocument.Document { get; set; }
public List<Binding> FilterBindings { get; }

public DataSourceItem GetDataSourceItem()
{
throw new System.NotImplementedException();
}
}
}
}

0 comments on commit 4c02237

Please sign in to comment.