github.com/juju/clock@v1.0.3/testclock/package_test.go (about) 1 // Copyright 2022 Canonical Ltd. 2 // Licensed under the LGPLv3, see LICENCE file for details. 3 4 package testclock_test 5 6 import ( 7 gotesting "testing" 8 "time" 9 10 gc "gopkg.in/check.v1" 11 ) 12 13 func TestAll(t *gotesting.T) { 14 gc.TestingT(t) 15 } 16 17 const ( 18 shortWait = 50 * time.Millisecond 19 longWait = time.Second 20 )