From 0c66b5d8d553cac55abc3fff96a0037c0c9e9e85 Mon Sep 17 00:00:00 2001 From: ichthus1604 Date: Sun, 21 Apr 2024 16:46:09 -0300 Subject: [PATCH] Fix tests compilation --- .../UnitTests/ViewModels/ReceiveAddressViewModelTests.cs | 6 ++++++ .../UnitTests/ViewModels/SuggestionLabelsViewModelTests.cs | 6 ++++++ 2 files changed, 12 insertions(+) diff --git a/WalletWasabi.Tests/UnitTests/ViewModels/ReceiveAddressViewModelTests.cs b/WalletWasabi.Tests/UnitTests/ViewModels/ReceiveAddressViewModelTests.cs index 4491421e3ba..f2f1365da46 100644 --- a/WalletWasabi.Tests/UnitTests/ViewModels/ReceiveAddressViewModelTests.cs +++ b/WalletWasabi.Tests/UnitTests/ViewModels/ReceiveAddressViewModelTests.cs @@ -2,6 +2,7 @@ using System.ComponentModel; using Moq; using NBitcoin; +using WalletWasabi.Fluent.Models.Transactions; using WalletWasabi.Fluent.Models.UI; using WalletWasabi.Fluent.Models.Wallets; using WalletWasabi.Fluent.ViewModels.Wallets.Labels; @@ -92,5 +93,10 @@ public IWalletStatsModel GetWalletStats() { throw new NotImplementedException(); } + + public IPrivacySuggestionsModel GetPrivacySuggestionsModel(SendParameters sendParameters) + { + throw new NotImplementedException(); + } } } diff --git a/WalletWasabi.Tests/UnitTests/ViewModels/SuggestionLabelsViewModelTests.cs b/WalletWasabi.Tests/UnitTests/ViewModels/SuggestionLabelsViewModelTests.cs index 03c39f69f06..277cf1690ba 100644 --- a/WalletWasabi.Tests/UnitTests/ViewModels/SuggestionLabelsViewModelTests.cs +++ b/WalletWasabi.Tests/UnitTests/ViewModels/SuggestionLabelsViewModelTests.cs @@ -3,6 +3,7 @@ using System.Reactive.Disposables; using DynamicData; using NBitcoin; +using WalletWasabi.Fluent.Models.Transactions; using WalletWasabi.Fluent.Models.Wallets; using WalletWasabi.Fluent.ViewModels.Wallets.Labels; using WalletWasabi.Wallets; @@ -227,5 +228,10 @@ public IWalletStatsModel GetWalletStats() { throw new NotImplementedException(); } + + public IPrivacySuggestionsModel GetPrivacySuggestionsModel(SendParameters sendParameters) + { + throw new NotImplementedException(); + } } }