Browse Source

Fixed tests

Krzysztof Krysiński 4 months ago
parent
commit
0d36df0491
1 changed files with 5 additions and 0 deletions
  1. 5 0
      tests/PixiEditor.Backend.Tests/MockDocument.cs

+ 5 - 0
tests/PixiEditor.Backend.Tests/MockDocument.cs

@@ -79,4 +79,9 @@ public class MockDocument : IReadOnlyDocument
     {
     {
         throw new NotImplementedException();
         throw new NotImplementedException();
     }
     }
+
+    public List<IReadOnlyStructureNode> GetParents(Guid memberGuid)
+    {
+        throw new NotImplementedException();
+    }
 }
 }