Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5,925 changes: 5,886 additions & 39 deletions Monero.Test/TestMoneroWalletCommon.cs

Large diffs are not rendered by default.

24 changes: 21 additions & 3 deletions Monero.Test/TestMoneroWalletLight.cs
Original file line number Diff line number Diff line change
@@ -1,10 +1,28 @@
using Monero.Wallet;
using Monero.Daemon;
using Monero.Wallet;
using Monero.Wallet.Common;

namespace Monero.Test;

public class TestMoneroWalletLight : TestMoneroWalletCommon
public class MoneroWalletLightFixture : MoneroWalletCommonFixture
{
public new MoneroWalletLight _wallet;
public MoneroDaemonLws _lws;

public MoneroWalletLightFixture(MoneroWalletLight wallet, MoneroDaemonRpc daemon, MoneroDaemonLws lws) : base(wallet, daemon)
{
// Before All
_wallet = wallet;
_lws = lws;
}
}

public class TestMoneroWalletLight : TestMoneroWalletCommon, IClassFixture<MoneroWalletLightFixture>
{
public TestMoneroWalletLight(MoneroWalletLightFixture walletLightFixture) : base(walletLightFixture)
{

}

protected override void CloseWallet(MoneroWallet wallet, bool save)
{
Expand All @@ -30,4 +48,4 @@ protected override MoneroWallet OpenWallet(MoneroWalletConfig config)
{
throw new NotImplementedException();
}
}
}
Loading
Loading