mirror of
https://github.com/gopl-zh/gopl-zh.github.com.git
synced 2025-09-12 06:41:33 +00:00
good good study, day day up!
This commit is contained in:
28
vendor/gopl.io/ch9/bank3/bank_test.go
generated
vendored
Normal file
28
vendor/gopl.io/ch9/bank3/bank_test.go
generated
vendored
Normal file
@@ -0,0 +1,28 @@
|
||||
// Copyright © 2016 Alan A. A. Donovan & Brian W. Kernighan.
|
||||
// License: https://creativecommons.org/licenses/by-nc-sa/4.0/
|
||||
|
||||
package bank_test
|
||||
|
||||
import (
|
||||
"sync"
|
||||
"testing"
|
||||
|
||||
"gopl.io/ch9/bank2"
|
||||
)
|
||||
|
||||
func TestBank(t *testing.T) {
|
||||
// Deposit [1..1000] concurrently.
|
||||
var n sync.WaitGroup
|
||||
for i := 1; i <= 1000; i++ {
|
||||
n.Add(1)
|
||||
go func(amount int) {
|
||||
bank.Deposit(amount)
|
||||
n.Done()
|
||||
}(i)
|
||||
}
|
||||
n.Wait()
|
||||
|
||||
if got, want := bank.Balance(), (1000+1)*1000/2; got != want {
|
||||
t.Errorf("Balance = %d, want %d", got, want)
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user