func TestBufferPool(t *testing.T) {
TestingT(t)
}
+
var _ = Suite(&BufferPoolSuite{})
-type BufferPoolSuite struct {}
+
+type BufferPoolSuite struct{}
// Initialize a default-sized buffer pool for the benefit of test
// suites that don't run main().
race <- "Get"
}()
go func() {
- time.Sleep(10*time.Millisecond)
+ time.Sleep(10 * time.Millisecond)
bufs.Put(unused)
race <- "Put"
}()
}
last = next
}
- c.Check(reuses > allocs * 95/100, Equals, true)
+ c.Check(reuses > allocs*95/100, Equals, true)
}