mirror of
https://github.com/gopl-zh/gopl-zh.github.com.git
synced 2024-11-05 05:53:45 +00:00
24 lines
431 B
Go
24 lines
431 B
Go
|
// Copyright © 2016 Alan A. A. Donovan & Brian W. Kernighan.
|
||
|
// License: https://creativecommons.org/licenses/by-nc-sa/4.0/
|
||
|
|
||
|
package memo_test
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"gopl.io/ch9/memo3"
|
||
|
"gopl.io/ch9/memotest"
|
||
|
)
|
||
|
|
||
|
var httpGetBody = memotest.HTTPGetBody
|
||
|
|
||
|
func Test(t *testing.T) {
|
||
|
m := memo.New(httpGetBody)
|
||
|
memotest.Sequential(t, m)
|
||
|
}
|
||
|
|
||
|
func TestConcurrent(t *testing.T) {
|
||
|
m := memo.New(httpGetBody)
|
||
|
memotest.Concurrent(t, m)
|
||
|
}
|