go-by-test/wallet/wallet_test.go

56 lines
1.1 KiB
Go
Raw Normal View History

package wallet
import "testing"
func TestWallet(t *testing.T) {
2024-09-11 09:22:04 +00:00
t.Run("deposit", func(t *testing.T) {
wallet := Wallet{}
wallet.Deposit(10)
assertBalance(t, wallet, Bitcoin(10))
})
2024-09-11 09:26:39 +00:00
2024-09-11 09:22:04 +00:00
t.Run("withdraw", func(t *testing.T) {
wallet := Wallet{balance: Bitcoin(20)}
2024-09-11 09:43:34 +00:00
err := wallet.Withdraw(10)
assertNoError(t, err)
2024-09-11 09:22:04 +00:00
assertBalance(t, wallet, Bitcoin(10))
})
2024-09-11 09:26:39 +00:00
t.Run("withdraw insufficient funds", func(t *testing.T) {
startingBalance := Bitcoin(20)
wallet := Wallet{balance: startingBalance}
err := wallet.Withdraw(100)
assertError(t, err, ErrInsufficientFunds)
assertBalance(t, wallet, startingBalance)
2024-09-11 09:26:39 +00:00
})
}
func assertBalance(t testing.TB, wallet Wallet, want Bitcoin) {
t.Helper()
got := wallet.Balance()
if got != want {
t.Errorf("got %q, want %q", got, want)
}
}
func assertError(t testing.TB, got error, want error) {
t.Helper()
if got == nil {
t.Fatal("didn't get an error but wanted one")
}
if got != want {
t.Errorf("got %q, want %q", got, want)
}
}
2024-09-11 09:43:34 +00:00
func assertNoError(t testing.TB, got error) {
t.Helper()
if got != nil {
t.Fatal("get an error but didn't want one")
}
}