From 5e8a2ed26f3c89aa736744987c2d9fbe2064989f Mon Sep 17 00:00:00 2001 From: Olaoluwa Osuntokun Date: Wed, 18 Nov 2015 14:59:07 -0800 Subject: [PATCH] add skeleton for initial wallet tests --- wallet/wallet_test.go | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/wallet/wallet_test.go b/wallet/wallet_test.go index 23a75073..243560bf 100644 --- a/wallet/wallet_test.go +++ b/wallet/wallet_test.go @@ -1 +1,27 @@ package wallet + +import "testing" + +func createTestWallet() { +} + +func TestBasicWalletReservationWorkFlow(t *testing.T) { + // all stages + // fields on struct properly set + // funding transaction on disk +} + +func TestFundingTransactiontxFees(t *testing.T) { +} + +func TestFundingTransactionLockedOutputs(t *testing.T) { +} + +func TestFundingTransactionCancellationFreeOutputs(t *testing.T) { +} + +func TestFundingReservationInsufficientFunds(t *testing.T) { +} + +func TestFundingReservationInvalidCounterpartySigs(t *testing.T) { +}